全选

2年前 (2022) 程序员胖胖胖虎阿
266 0 0

function CheckSelBox(box)   
{
    for (var i=0;i<document.forms[0].elements.length;i++)
    {
        var e = document.forms[0].elements[i];
        if (e.type=='checkbox')
        {
            var o=e.name.lastIndexOf('chbItem');
            if(o!=-1)
            {
                e.checked = box.checked;
             }
        }
    }
}

版权声明:程序员胖胖胖虎阿 发表于 2022年10月10日 上午4:16。
转载请注明:全选 | 胖虎的工具箱-编程导航

相关文章

暂无评论

暂无评论...