jQuery 选择帮助

发布于 2024-11-07 22:35:12 字数 352 浏览 0 评论 0原文

    jQuery.subscribe('setIdComFamOnEditForm', function(event,ui) {
        var idButton = ui.id;
        var idComFam = jQuery("#" + idButton).name.split("-")[1];
        $("#formFamigliare").attr('action', 'detraz_update');
        $("#IdComFam").val(idComFam);
    });

上面的代码没有找到 jQuery("#" + idButton)。

我哪里错了?

    jQuery.subscribe('setIdComFamOnEditForm', function(event,ui) {
        var idButton = ui.id;
        var idComFam = jQuery("#" + idButton).name.split("-")[1];
        $("#formFamigliare").attr('action', 'detraz_update');
        $("#IdComFam").val(idComFam);
    });

The above code does not find the jQuery("#" + idButton).

Where Am I wrong?

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

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

发布评论

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

评论(1

东走西顾 2024-11-14 22:35:12

我不太熟悉 subscribe 但你确定 ui.id 返回一个值吗?此外,我不认为 jquery 包装集有 name 属性。所以我认为 jQuery("#" + idButton).name 不起作用。如果您想要 name 属性,则需要使用 attr() 方法。

I'm not that familiar with subscribe but are you sure that ui.id is returning a value? Furthermore I don't think a jquery wrapped set has a name property. So I don't think jQuery("#" + idButton).name will work. If you want the name attribute you would need to use the attr() method.

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