第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

關(guān)于checkbox復(fù)選框的問題?還是有一些問題想了解,麻煩幫忙看看下面的內(nèi)容

關(guān)于checkbox復(fù)選框的問題?還是有一些問題想了解,麻煩幫忙看看下面的內(nèi)容

牛魔王的故事 2021-06-20 17:10:02
假設(shè)有8個checkbox復(fù)選框從集合里讀取到的 比如要勾第5個checkbox 前面4個全部勾上 勾第8個前面七個全部勾上 JS要怎么寫呢
查看完整描述

2 回答

?
大話西游666

TA貢獻(xiàn)1817條經(jīng)驗 獲得超14個贊

<input type="checkbox" data-index="1" class="chexkbox">選項1<input type="checkbox" data-index="2" class="chexkbox">選項2<input type="checkbox" data-index="3" class="chexkbox">選項3<input type="checkbox" data-index="4" class="chexkbox">選項4<input type="checkbox" data-index="5" class="chexkbox">選項5<input type="checkbox" data-index="6" class="chexkbox">選項6<input type="checkbox" data-index="7" class="chexkbox">選項7<input type="checkbox" data-index="8" class="chexkbox">選項8<input type="checkbox" data-index="9" class="chexkbox">選項9<input type="checkbox" data-index="10" class="chexkbox">選項10<script>var checkboxArr = document.getElementsByClassName('chexkbox');for(var i = 0; i < checkboxArr.length; i ++){    checkboxArr[i].onclick = function(){        var index = this.getAttribute('data-index');        for(var c = 0; c < index; c ++){            if(this.checked == true){                checkboxArr[c].checked = true;            }else{                checkboxArr[c].checked = false;            }        }             }}</script>

查看完整回答
反對 回復(fù) 2021-06-26
?
慕的地10843

TA貢獻(xiàn)1785條經(jīng)驗 獲得超8個贊

用jquery寫的。用到了jquery的prevAll()方法。

$(".input").click(function(){//這個input是我給checkbox取的共有類名

$(this).prevAll().attr("checked",true);

})


查看完整回答
反對 回復(fù) 2021-06-26
  • 2 回答
  • 0 關(guān)注
  • 501 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號