checked
Posted uman
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了checked相关的知识,希望对你有一定的参考价值。
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<div>
<input type="checkbox" name="fruit"> apple
<input type="checkbox" name="fruit"> orange
<input type="checkbox" name="fruit"> banana
<input type="checkbox" name="fruit"> watermelon<br>
<input type="button" value="I like these fruit!">
</div>
<script>
$(function(){
$("input[type=‘button‘]").click(function() {
alert($("input[type=‘checkbox‘]:checked").length);
});
})
</script>
</body>
</html>
以上是关于checked的主要内容,如果未能解决你的问题,请参考以下文章