jquery自动选中多选框
程序员文章站
2022-03-07 14:21:30
...
jquery自动选中多选框
- 页面载入时使用jquery来自动选中页面中的多选框\
代码效果如下:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script src="jquery.js"></script>
<style>
div{
width: 200px;
height: 200px;
background-color: aqua;
}
</style>
</head>
<body>
<center>
<h2>页面载入时使用jquery来自动选中页面中的多选框</h2>
<div>
<p><input type="checkbox">多选框1</p>
<p><input type="checkbox">多选框2</p>
<p><input type="checkbox">多选框3</p>
</div>
</center>
<script>
$(function () {
$(":checkbox").attr("checked",true);
});
</script>
</body>
</html>
上一篇: Ext TextField的Label 和隐藏组件
下一篇: thymeleaf多选框选中