我有兩個單選按鈕,像這樣如何做一個JavaScript確認對話框,如果一個單選按鈕被選中,與jQuery
<input type="radio" name="rush" value="yes" />
<input type="radio" name="rush" value="no" checked="checked" />
我想要做的就是當表單點擊提交按鈕,檢查「是'被選中。
如果是,則顯示一個JavaScript確認對話框
到目前爲止,我已經得到了這一點,但我堅持,任何幫助,將不勝感激。
$("form.shipping").submit(function() {
if($("input[name='rush']".attr("value") === "yes")
{
if (confirm("Rush orders are subject to an upcharge. (Just wanted to make sure you read the note). Is this ok?"))
{
return true;
}
else
{
return false;
}
}
});
這些變化現在還沒有工作? – 2009-04-09 20:31:31
是與上面的代碼我仍然沒有得到確認,無賴 – mjr 2009-04-09 20:34:12