JS技术

Javascript模态对话框 取父页的值

字号+ 作者: 来源:    2014-11-17 20:00 我要评论( )

Javascript模态对话框 取父页的值,阅读Javascript模态对话框 取父页的值,1. a.htm 父页有 window.showModalDialog(

1. a.htm   父页
有 window.showModalDialog("b.htm");
有 Html元素 <input type="text" id="t1" name="t1" value="value">

2.b.htm 弹出页面

能否在 b.htm 上取到 a.htm 中 t1的值 ?

回答:

在a.html中设置

var results = window.showModalDialog("b.html");

if(results){

    alert(results["key"]);

}

 

在b.html中

<script>

window.returnValue={

      key:"返回到父页面"

}

</script>

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
网友点评