jQuery:选择子项作为隐藏输入类型?
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你有没有尝试过:
Have you tried:
您可以使用
find
jquery find
you can use
find
jquery find