欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

页面载入时使用jquery来自动选中页面中的多选框

程序员文章站 2022-07-13 23:04:03
...

页面载入时使用jquery来自动选中页面中的多选框


<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<script src="Js/jquery.js"></script>
<body>
<p><input type="checkbox">多选框1</p>
<p><input type="checkbox">多选框2</p>
<p><input type="checkbox">多选框3</p>
<script>
    $('input[type=checkbox]').prop('checked',true);

</script>
</body>
</html>