我有一組在幾個單選按鈕,其中一個是:jQuery的單選按鈕檢查,並取消
<input type='radio' id='other' name='Group'></input>
<label for='other'>Other:</label>
我想就這樣,當按鈕被選中,我得到一個警告。當單選按鈕變爲未選中時,在檢查之後(通過選擇另一個按鈕),我想獲得不同的警報消息。
JQuery的(這是不工作):
$('input:radio[id="other"]').change(
function(){
if ($(this).is(':checked')) {
alert("checked");
}
if ($(this).is(':notchecked')) {
alert("notchecked");
}
}
);
與此代碼,它顯示了什麼? – ianace 2012-01-03 05:15:01
@ianace檢查的部分正在提醒警報,但是當我「取消」按鈕時,沒有任何反應 – kirby 2012-01-03 05:16:16