我试图在单击全选/取消全选复选框时选中/取消选中所有复选框,如下所示:
onclick="selectAll(document.getElementsByName('myForm:checkboxes'));"
和JS函数:
function selectAll(checkboxes)
{
for(var i in checkboxes)
checkboxes[i].checked = true;
}
function deselectAll(checkboxes)
{
for(var i in checkboxes)
checkboxes[i].checked = false;
}
和 HTML:
<input type="checkbox" value="15" name="myForm:checkboxes" id="myForm:checkboxes3:_1">
此代码在 Firefox 中运行良好,但在 Internet Explorer 9 中无法运行。