HTML:在檢查時,禁止所有其他
form
input:radio 1
input:radio 2
input:radio 3
如果點擊其中的一個,我想禁用休息。我認爲兄弟姐妹選擇將在這裏使用,但我不知道如何。
感謝您的幫助!
HTML:在檢查時,禁止所有其他
form
input:radio 1
input:radio 2
input:radio 3
如果點擊其中的一個,我想禁用休息。我認爲兄弟姐妹選擇將在這裏使用,但我不知道如何。
感謝您的幫助!
我想你想禁用他人,爲此,你需要設置殘疾人= disabled屬性的無線電輸入。
$("input:radio").click(function() {
$(this).siblings("input:radio").attr("disabled","disabled");
});
例子這裏:http://jsbin.com/oquse/2 查看/編輯代碼這裏:http://jsbin.com/oquse/2/edit
你可以使用簡單的JavaScript + HTML dom來做到這一點。
單選按鈕事件:http://www.hscripts.com/tutorials/javascript/dom/radio-events.php
使用JavaScript函數要在onClick事件激活
爲什麼禁用它們?所有其他具有相同名稱的單選按鈕在用戶選擇不同的單選按鈕時會自動取消選中。 – Powerlord 2010-08-18 17:40:59