js子页面获取父页面数据示例
时间:2021-07-08 14:48:34|栏目:JavaScript代码|点击: 次
做页面预览的时候,数据没有存入数据库,但是要打开一个页面进行预览,询问众大婶,原来是这样来做。
1、父页面
<input type="text" id="name" value="zhangsan"/>
<a href="a.html" target="_blank">预览</a>
2、子页面,也就是a.html获取父页面中文本框的value
$(function(){
console.info(window.opener.document.getElementById("name").value);
});
这样控制台中出来的则是父页面文本框的值
Don't hurry say have no choice, perhaps, next intersection will meet hope.
1、父页面
复制代码 代码如下:
<input type="text" id="name" value="zhangsan"/>
<a href="a.html" target="_blank">预览</a>
2、子页面,也就是a.html获取父页面中文本框的value
复制代码 代码如下:
$(function(){
console.info(window.opener.document.getElementById("name").value);
});
这样控制台中出来的则是父页面文本框的值
Don't hurry say have no choice, perhaps, next intersection will meet hope.
栏 目:JavaScript代码
下一篇:js获取UserControl内容为拼html时提供方便
本文标题:js子页面获取父页面数据示例
本文地址:http://www.codeinn.net/misctech/154362.html