gpt4 book ai didi

jquery - 如何在取消选中复选框时调用 jQuery 函数

转载 作者:行者123 更新时间:2023-12-01 06:19:30 25 4
gpt4 key购买 nike

HTML有一个 html 复选框。我无法编辑这段代码中的任何内容。默认情况下,它是通过外部脚本检查的。

<input type="checkbox" name="shipping[same_as_billing]" id="shipping:same_as_billing" value="1" onclick="shipping.setSameAsBilling(this.checked);">

jQuery

当用户取消选中上面的复选框时,我编写了自定义 jQuery 来显示一些表单元素。

<script>
function showForm(){
code to show a form goes here
}
</script>

我需要什么:

当用户取消选中上述复选框时,如何调用showForm()函数?当用户检查此内容时,不应调用它。

最佳答案

您必须转义 id 中的冒号,并使用 jQuery 的“is”方法来检查您的复选框是否被选中。

$('#shipping\\:same_as_billing').change(function() {
if(!$(this).is(':checked'))
alert('worked');
});

jsFiddle

关于jquery - 如何在取消选中复选框时调用 jQuery 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16997414/

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