如何製作不允許用戶選擇各種單選按鈕的腳本?這是我的代碼:如何選擇只有一個單選按鈕,如果它們有不同的名稱
<div class="controls" >
<label class="radio"> <input type="radio" <?php echo ($this->state->get('filter.totalinmuebles') == '1') ? 'checked' : ''; ?> name="totalinmuebles" id="totalinmuebles" value="1"> Volumen de inmuebles en venta</label>
<label class="radio"> <input type="radio" <?php echo ($this->state->get('filter.totalventas') == '1') ? 'checked' : ''; ?> name="totalventas" id="totalventas" value="1"> Total de ventas</label>
<label class="radio"> <input type="radio" <?php echo ($this->state->get('filter.totalventascliente') == '1') ? 'checked' : ''; ?> name="totalventascliente" id="totalventascliente" value="1"> Total de ventas por cliente</label>
<label class="radio"> <input type="radio" <?php echo ($this->state->get('filter.totalcomisionescobrar') == '1') ? 'checked' : ''; ?> name="totalcomisionescobrar" id="totalcomisionescobrar" value="1"> Total comisiones a cobrar</label>
</div>
我已經試過,我發現在互聯網上我自己的和別人的不同劇本,但它似乎沒有工作。驗證應該不必點擊「提交」按鈕。
它們全都具有相同的「值」 –
您能否詳細說明_「不允許用戶選擇各種單選按鈕」的意思?_ – Archer
單選按鈕具有不同的名稱,因此它們被認爲是不同的無線電按鈕,每個按鈕都可以選擇,如果你願意的話。我不希望發生這種情況。 – PLATANIUM