亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

全選案例的練習(xí)

原創(chuàng) 2019-02-21 11:27:35 205
摘要:<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>全選</title> <link rel="stylesheet" type="text/css" href=""> &

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>全選</title>

<link rel="stylesheet" type="text/css" href="">

<link rel="shortcut icon" type="image/x-icon" href="">


<style type="text/css">


.box{width: 120px;height: 250px;border: 1px solid #ccc; border-radius: 5px;padding: 5px 10px;margin: 20px auto;}


.box div {border-bottom: 1px solid #ccc;padding-bottom: 10px;margin-bottom: 8px;}


.box input{margin: 8px;}

</style>

<body>


<div class="box">

<div>

<input type="checkbox" id = "checkall" ><label for="checkall">全選</label>

</div>

<input type="checkbox" name = "item" onclick="checkitem(this)" >選項(xiàng)1<br>

<input type="checkbox" name = "item" onclick="checkitem(this)" >選項(xiàng)2<br>

<input type="checkbox" name = "item" onclick="checkitem(this)" >選項(xiàng)3<br>

<input type="checkbox" name = "item" onclick="checkitem(this)" >選項(xiàng)4<br>

<input type="checkbox" name = "item" onclick="checkitem(this)" >選項(xiàng)5<br>

<input type="checkbox" name = "item" onclick="checkitem(this)" >選項(xiàng)6<br>


</div>



<script type="text/javascript">

checkall.onclick=function checkall(){

var checkall,item;

checkall = document.getElementById("checkall");


item = document.getElementsByName("item");

for (var i = 0; i < item.length; i++) {

if(checkall.checked){

item[i].checked = true;

}else{

item[i].checked = false;

}


}

}


function checkitem(x){

var checkall;

checkall = document.getElementById("checkall");

if(!x.checked){

if(checkall.checked){

checkall.checked = false;

}

}

}



</script>



</body>

</html>


總結(jié):在對(duì)標(biāo)簽進(jìn)行操作時(shí),在獲取一些列相同樣式的標(biāo)簽時(shí),可以用一個(gè)對(duì)象進(jìn)行獲取,獲取一個(gè)數(shù)組對(duì)象。同樣也可以在調(diào)用方法時(shí)將對(duì)象傳入,同樣可以獲取對(duì)象。



批改老師:韋小寶批改時(shí)間:2019-02-21 11:43:26
老師總結(jié):全選這個(gè)案例不管是在網(wǎng)站的前臺(tái)還是網(wǎng)站的后臺(tái)基本上都會(huì)使用的 可想而知是多重要的 一定要好好掌握!

發(fā)佈手記

熱門詞條