我有一個javascript例程在一組複選框上執行操作,但最終操作我想將單擊複選框設置爲選中或取消選中,如果用戶是選中該框或取消選中。使用Javascript來檢查複選框是否被選中或取消選中
不幸的是,每次我檢查它是否被檢查或未檢查時,它都會返回「on」,表示用戶總是檢查該框!任何幫助將不勝感激,我也包括了JavaScript。
// Uncheck all the checkboxs with the same Tax Credit
for (i=0; i<arrChecks.length; i++)
{
var attribute = arrChecks[i].getAttribute("xid")
if (attribute == elementName)
{
// if the current state is checked, unchecked and vice-versa
if (arrChecks[i].value == "on") // <-- This is always returning true, even if the box is being unchecked
{
arrChecks[i].checked = 1;
} else {
arrChecks[i].checked = 0;
}
} else {
arrChecks[i].checked = 0;
}
}
在html中檢查複選框的正確方法是checked =「checked」 – 2009-01-23 16:46:01
您是否考慮過像jquery,prototype,moo或yui這樣的庫?他們使這個更容易 – 2009-01-23 19:18:45