以下の選択リストが機能しないエラーは何ですか?
メール登録フォームの作成 (固定連絡先)。Constant Contact フォーム ジェネレーターを使用して、「メーリング リストのオプション」をチェック ボックスからドロップダウン メニューに変更しようとしましたが、選択した単一のリストではなく、すべてのメーリング リストに連絡先情報が追加されました。 .
リストコードを選択: (動作していません)
<select>
<option name="Customer Type" ID="">Please select...</option>
<option value="Architect/Designer" name="Lists[]" id="list_Architect/Designer" />Architect/Designer</option>
<option value="AV/Media/Broadcast" name="Lists[]" id="list_AV/Media/Broadcast" />AV/Media/Broadcast</option>
<option value="Command/Control" name="Lists[]" id="list_Command/Control" />Command/Control</option>
</select>
チェック ボックス コード: (動作中)
<input type="checkbox" checked="checked" value="Architect/Designer" name="Lists[]" id="list_Architect/Designer" />
<label for="list_Architect/Designer">Architect/Designer</label><br />
<input type="checkbox" value="AV/Media/Broadcast" name="Lists[]" id="list_AV/Media/Broadcast" />
<label for="list_AV/Media/Broadcast">AV/Media/Broadcast</label><br />
<input type="checkbox" value="Command/Control" name="Lists[]" id="list_Command/Control" />
<label for="list_Command/Control">Command/Control</label><br />