连接到我的change() jQuery 事件的RadioButtons 不触发

发布于 2024-12-09 15:45:22 字数 706 浏览 0 评论 0原文

这是我的代码:

<script type="text/javascript">
    $('input[name="paymenttype"]').change(function () {
        alert("works!"); // This doesn't fire.
    });
</script>

<div id="paymentselector">
    <label>
        <input name="paymenttype" value="deposit" type="radio" />Deposito
    </label>
    <label>
        <input name="paymenttype" value="creditcard" type="radio" />Tarjeta de Credito
    </label>
</div>

根据文档,这应该有效: http://api.jquery.com/attribute-equals-selector/

在Change() 事件,警报不会被触发。

我的 Javascript 代码有问题吗?

Here's my code:

<script type="text/javascript">
    $('input[name="paymenttype"]').change(function () {
        alert("works!"); // This doesn't fire.
    });
</script>

<div id="paymentselector">
    <label>
        <input name="paymenttype" value="deposit" type="radio" />Deposito
    </label>
    <label>
        <input name="paymenttype" value="creditcard" type="radio" />Tarjeta de Credito
    </label>
</div>

According to the documentation, this should work:
http://api.jquery.com/attribute-equals-selector/

In the change() event, the alert isn't fired.

Is something wrong in my Javascript code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

街角卖回忆 2024-12-16 15:45:22

您可以尝试添加文档就绪处理程序 -

$(document).ready(function() {
  $('input[name="paymenttype"]').change(function () {
    alert("works!"); // This doesn't fire.
   });
});

You could try adding a document ready handler -

$(document).ready(function() {
  $('input[name="paymenttype"]').change(function () {
    alert("works!"); // This doesn't fire.
   });
});
楠木可依 2024-12-16 15:45:22

好吧,马上,您需要将 JS 包装在 $(document).ready(function(){ ... }); 块中。当 JS 运行时,它尝试访问的元素还不存在。

Well, right off the bat, you need to wrap your JS in a $(document).ready(function(){ ... }); block. When the JS is run, the element it's trying to access doesn't exist yet.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文