Home  >  Article  >  Web Front-end  >  javascript弹出页面回传值的方法_javascript技巧

javascript弹出页面回传值的方法_javascript技巧

WBOY
WBOYOriginal
2016-05-16 16:17:331315browse

本文实例讲述了javascript弹出页面回传值的方法。分享给大家供大家参考。具体实现方法如下:

a1.html

复制代码 代码如下:



Window 1

 

Window 1




 
<script> <br /> function test(){<br /> window.open('b1.html','newwindow','height=100,width=400') ;<br /> }<br /> </script>

b1.html

复制代码 代码如下:



New Document

 

Window 2



 
<script> <br /> function test(){<br /> var bValue = 111;<br /> window.opener.a.value = bValue ;<br /> window.close(); <br /> } <br /> </script>

希望本文所述对大家的javascript程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn