本文主要是介绍怎样判断复选框是否被选中,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
网上搜索很多资料,亲测以下方法有效:
<!DOCTYPE html>
<html>
<head><meta charset="UTF-8"><title></title><script type="text/javascript" src="js/jquery-2.1.4.js"></script><script type="text/javascript">$(function(){$("button").click(function() {$(".checkbox").each(function() {alert($(this).is(":checked"))});});})</script>
</head>
<body><input type="checkbox" class="checkbox" id="checkbox_id1" value="1" />1 <input type="checkbox" class="checkbox" id="checkbox_id2" value="2" />2 <input type="checkbox" class="checkbox" id="checkbox_id3" value="3" />3 <input type="checkbox" class="checkbox" id="checkbox_id4" value="4" />4 <input type="checkbox" class="checkbox" id="checkbox_id5" value="5" />5 <button>提交</button>
</body>
</html>
这篇关于怎样判断复选框是否被选中的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!