访问 DOM 树的第二层parent()
假设我有一个表单,单击该表单上的按钮时,会弹出另一个表单。用户输入到此“弹出”表单,并在提交时我希望将输入值发送到原始表单上的隐藏输入值。
那么,新形式所源自的原始形式是否算作第二级父级?祖父母;)
这是我正在尝试研究解决我的问题的方法。请随意提出任何其他方法:D
谢谢,
编辑:我的解决方案:
$(".pass_submit").live('click', function(event) {
var formid = $(this).closest('form')
var plaintext = $('#pass').val();
$(formid).find('.password').val(plaintext);
});
Say I have a form, on clicking a button on that form, another form pops up. The user inputs to this 'popup' form and on submit I want the input value to be sent to a hidden input value on the original form.
So does the original form of which the new form sprung from count as the 2nd level parent? the grandparent ;)
This is a method I am trying to look into to solve my problem. Feel free to suggest any other ways :D
thanks,
EDIT: my solution:
$(".pass_submit").live('click', function(event) {
var formid = $(this).closest('form')
var plaintext = $('#pass').val();
$(formid).find('.password').val(plaintext);
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
首先,没有子形式的概念。我们不应该使用嵌套形式。
如果你想用 DOM 访问父级,就很简单了,就像这样
var p = document.getElementById("div1").parentNode;
First of all there is no child forms concept. We should not use nested forms.
If you want to access the parent with DOM, it is quite simple like this
var p = document.getElementById ("div1").parentNode;