1 回答
TA贡献1824条经验 获得超5个赞
你可以做到jquery
第一步
改变这个
//select all checkboxes
<th><input type="checkbox" class=""/></th>
对此
//select all checkboxes
<th><input type="checkbox" class="check_all"/></th> //just added a class to this element
第二步
将 class_name 添加到所有<input type="checkbox"> 我的意思<input type="checkbox" id="message_{{$message->id}}" name="message" value="{{$message->id}}">更改为<input type="checkbox" id="message_{{$message->id}}" name="message" value="{{$message->id}}" class="custom_name">
笔记: be sure that all your checkboxes has one class_name instead the one witch if we click it others checked!
第三步
在页脚中添加这个
<script
src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
crossorigin="anonymous"></script>
<script>
$(".check_all").on("click", function(){
$(".custom_name").each(function(){
$(this).attr("checked", true);
});
});
</script>
我 HPOE 这对你有用……
- 1 回答
- 0 关注
- 87 浏览
添加回答
举报