javascript简单的全选按钮

摘要:用javascript实现多选框的全部勾选功能,代码附上:

<html>
<head>
<title>全选</title>
<script type="text/javascript" language="javascript">
function checkall(asr){
var like=document.getElementsByName("like[]");
for(var i=0;i<like.length;i++){
   like[i].checked=asr.checked;
   }
}
</script>
</head>
<body>
你喜欢的动漫
<form>
<input type="checkbox" name="like" onClick="checkall(this)">全选
<input type="checkbox" name="like[]">火影忍者
<input type="checkbox" name="like[]">灌篮高手
<input type="checkbox" name="like[]">多啦A梦
<input type="checkbox" name="like[]">宠物精灵
</form>
</body>
</html>

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/98514.html

(0)
上一篇 2021年8月21日
下一篇 2021年8月21日

相关推荐

发表回复

登录后才能评论