切换所有窗体复选框
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了切换所有窗体复选框相关的知识,希望对你有一定的参考价值。
Simple script to toggle (checked or not checked) all checkboxes on the page.
function toggleCheckboxes() { // written by Daniel P 3/21/07 // toggle all checkboxes found on the page var inputlist = document.getElementsByTagName("input"); for (i = 0; i < inputlist.length; i++) { if ( inputlist[i].getAttribute("type") == 'checkbox' ) { // look only at input elements that are checkboxes if (inputlist[i].checked) inputlist[i].checked = false else inputlist[i].checked = true; } } }
以上是关于切换所有窗体复选框的主要内容,如果未能解决你的问题,请参考以下文章