如何将值传递给以前的html页面

时间:2012-09-14 06:42:12

标签: javascript html

我有一个带有文本框的HTML页面。单击文本框时,会弹出一个弹出窗口,单击“确定”按钮后,弹出窗口必须关闭,第一个html页面中的文本框必须填充第二个HTML中给出的值。 我试过这样的事,

one.html

    <form name="form1" >
          <input type="text" name="source" onclick="window.open('second.html')" />
    </form>

second.html

  <input type="button" onclick="{document.form1.source.value='hello';window.close()}" />

2 个答案:

答案 0 :(得分:2)

中的

<form name="form1" >
         <input type="text" id="txt1" name="source" onclick="window.open('second.html')" />
    </form>
<script type="text/javascript" >
function setvalue(args)
  {
    document.getElementByid('txt1').value=args;
  }
</script>

second.html

  <input type="button" onclick="settoparent()" />
<script type="javascript">
  function settoparent()
   {
    if(window.opener.setvalue!=undefined)
     {
      setvalue("textboxvaluefromHTML2");
     }
   window.close()
   }
</script>

答案 1 :(得分:-1)

你必须使用

window.opener.$("#yourtextfieldid").val(value);

实现这个目标

在你的vanila JS中

window.opener.document.yourelementID.fieldname.value="Any value";