我有一个变量,我已经存储了我的复选框ID,但是当我试图检查复选框是否被选中时,它不能正常工作。
<script>
function check(){
var id = "checkbox1.0";
if($('#' + id).is(':checked')){alert("checked");}
}
</script>
<body>
<input type ="checkbox" id = "checkbox1.0">
<input type ="checkbox" id = "checkbox2.0" onclick="check()">
</body>