JS實(shí)現(xiàn)CheckBox全選與取消
來(lái)源:易賢網(wǎng) 閱讀:1603 次 日期:2015-04-22 10:29:15
溫馨提示:易賢網(wǎng)小編為您整理了“JS實(shí)現(xiàn)CheckBox全選與取消”,方便廣大網(wǎng)友查閱!

在批量處理列表數(shù)據(jù)時(shí),往往會(huì)用到 CheckBox 的全選與取消全選,雖然她的實(shí)現(xiàn)原理很簡(jiǎn)單,但是對(duì)新手來(lái)說(shuō)還是有些難度,本文介紹的方法,觸發(fā)條件獨(dú)立,可以全選或取消全選指定 name 的 CheckBox , 同一頁(yè)面可以有多組供全選的 CheckBox ,功能健全,通用性較強(qiáng)。

js

view sourceprint?01 <script type="text/javascript">

02 function checkAll(name) {

03 var el = document.getElementsByTagName('input');

04 var len = el.length;

05 for(var i=0; i<len; i++) {

06 if((el[i].type=="checkbox") && (el[i].name==name)) {

07 el[i].checked = true;

08 }

09 }

10 }

11 function clearAll(name) {

12 var el = document.getElementsByTagName('input');

13 var len = el.length;

14 for(var i=0; i<len; i++) {

15 if((el[i].type=="checkbox") && (el[i].name==name)) {

16 el[i].checked = false;

17 }

18 }

19 }

20 </script>

html

view sourceprint?01 <input type="checkbox" name="test" value="" onclick="if(this.checked==true) { checkAll('test'); } else { clearAll('test'); }" /> 字母全選開關(guān)

02 <input type="checkbox" name="test" value="a" /> a

03 <input type="checkbox" name="test" value="b" /> b

04 <input type="checkbox" name="test" value="c" /> c

05 <input type="checkbox" name="test" value="d" /> d

06 <input type="checkbox" name="test" value="e" /> e

07 <input type="checkbox" name="test" value="f" /> f

08 <input type="checkbox" name="test" value="g" /> g

09 <br />

10 <input type="checkbox" name="num" value="" onclick="if(this.checked==true) { checkAll('num'); } else { clearAll('num'); }" /> 數(shù)字全選開關(guān) <input type="checkbox" name="num" value="1" /> 1

11 <input type="checkbox" name="num" value="2" /> 2

12 <input type="checkbox" name="num" value="3" /> 3

13 <br />

14 <br />

15 <input type="button" value="選擇所有的字母" onclick="checkAll('test')" /> <input type="button" value="清空選中的字母" onclick="clearAll('test')" /> <br />

16 <br />

17 <input type="button" value="選擇所有的數(shù)字" onclick="checkAll('num')" /> <input type="button" value="清空選中的數(shù)字" onclick="clearAll('num')" />

更多信息請(qǐng)查看IT技術(shù)專欄

更多信息請(qǐng)查看腳本欄目
易賢網(wǎng)手機(jī)網(wǎng)站地址:JS實(shí)現(xiàn)CheckBox全選與取消
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽(tīng)報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)