访问 DOM 树的第二层parent()

发布于 11-03 20:05 字数 413 浏览 3 评论 0原文

假设我有一个表单,单击该表单上的按钮时,会弹出另一个表单。用户输入到此“弹出”表单,并在提交时我希望将输入值发送到原始表单上的隐藏输入值。

那么,新形式所源自的原始形式是否算作第二级父级?祖父母;)

这是我正在尝试研究解决我的问题的方法。请随意提出任何其他方法: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 技术交流群。

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

发布评论

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

评论(2

洋洋洒洒2024-11-10 20:05:05

首先,没有子形式的概念。我们不应该使用嵌套形式。

如果你想用 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;

じее2024-11-10 20:05:05

好吧,让我们这样做。不需要使用子表单概念。

函数 StoreInHidden()
{
document.getElementById("hiddenname").value = document.getElementById("x").value;
document.getElementById("pop").style.display='none';
}

函数显示()
{
document.getElementById("pop").style.display='';

}

Ok lets do like this. Dont need to use child form concept.

function StoreInHidden()
{
document.getElementById ("hiddenname").value = document.getElementById ("x").value;
document.getElementById ("pop").style.display='none';
}

function Show()
{
document.getElementById ("pop").style.display='';

}

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