jQuery:选择子项作为隐藏输入类型?

发布于 2024-11-25 09:34:52 字数 513 浏览 2 评论 0原文

我的 div.hanging 里面是一个表单。该表单包含一个带有类 .hiddenField 的隐藏输入字段

,如下所示:

<form>
    <input class="input1 hiddenField" name="user[current_password]" type="hidden">
</form>

我的 jQuery...

$('.hanging form').submit(function(e) {
        e.preventDefault();
        $(this).children('.hiddenField').val('test');
        triggerAjaxSubmit(formId, true);
    });

知道为什么这个选择器不起作用吗?我只需要根据 $(this) 选择表单内的隐藏字段。

inside of my div.hanging is a form. This form contains a hidden inputfield with a class .hiddenField

Like this:

<form>
    <input class="input1 hiddenField" name="user[current_password]" type="hidden">
</form>

My jQuery…

$('.hanging form').submit(function(e) {
        e.preventDefault();
        $(this).children('.hiddenField').val('test');
        triggerAjaxSubmit(formId, true);
    });

Any idea why this selector won't work? I simply need to select the hidden field inside of the form depending on $(this).

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

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

发布评论

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

评论(3

友谊不毕业 2024-12-02 09:34:52
$('.hanging form').submit(function(e) {
    e.preventDefault();
    $(this).find('.hiddenField').val('test');
    triggerAjaxSubmit(formId, true);
});

我只需要选择表单内的隐藏字段,具体取决于
关于 $(this)。

$(this).find('.hiddenField');
$('.hanging form').submit(function(e) {
    e.preventDefault();
    $(this).find('.hiddenField').val('test');
    triggerAjaxSubmit(formId, true);
});

I simply need to select the hidden field inside of the form depending
on $(this).

$(this).find('.hiddenField');
小矜持 2024-12-02 09:34:52

你有没有尝试过:

  $(this).find('.hiddenField').val('test');

Have you tried:

  $(this).find('.hiddenField').val('test');
谜兔 2024-12-02 09:34:52

您可以使用 find

$('.hanging form').submit(function(e) {
        e.preventDefault();
        $(this).find(".hiddenField").val('test');
        triggerAjaxSubmit(formId, true);
    });

jquery find

you can use find

$('.hanging form').submit(function(e) {
        e.preventDefault();
        $(this).find(".hiddenField").val('test');
        triggerAjaxSubmit(formId, true);
    });

jquery find

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