gpt4 book ai didi

javascript - 检查复选框是否被选中或不使用javascript中的变量

转载 作者:行者123 更新时间:2023-11-28 04:20:30 26 4
gpt4 key购买 nike

我有一个变量,用于存储我的复选框 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>

最佳答案

id中的.必须转义,但最好避免这样的id。

   var id = "checkbox1\\.0";

The demo.

关于javascript - 检查复选框是否被选中或不使用javascript中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22369875/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com