页面载入时使用jquery来自动选中页面中的多选框
程序员文章站
2022-07-13 23:02:26
...
代码:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script src="js/jquery.js"></script>
<style>
div{
width: 200px;
height: 200px;
background-color: darkturquoise;
}
</style>
</head>
<body>
<p><input type="checkbox">多选框1</p>
<p><input type="checkbox">多选框2</p>
<p><input type="checkbox">多选框3</p>
<script type="text/javascript">
$('input[type=checkbox]').prop('checked',true)
</script>
</body>
</html>
上一篇: 页面载入时使用jquery来自动选中页面中的多选框
下一篇: Style中的Setter