js 调用父窗口的具体实现代码_Javascript教程-查字典教程网
js 调用父窗口的具体实现代码
js 调用父窗口的具体实现代码
发布时间:2016-12-30 来源:查字典编辑
摘要:opener.show();父窗体需要顶一个show()方法父面页代码:复制代码代码如下:html.htmlopennewpagewindo...

opener.show();

父窗体需要顶一个show() 方法

父面页代码:

复制代码 代码如下:

<!DOCTYPE HTML PUBLIC "-//IETF//DTD LEVEL1//EN">

<html>

<head>

<title>html.html</title>

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">

<meta http-equiv="description" content="this is my page">

<meta http-equiv="content-type" content="text/html; charset=UTF-8">

<>

</head>

<body>

<div>

<button id="btn">open new page</button>

</div>

<script>

window.onload=function(){

var btn = document.getElementById("btn");

btn.onclick = openPage;

function openPage(){

try {

window.open('newpage.html');

}catch(e){

alert(e);

}

//alert("ok");

}

}

function show(){

document.title=new Date();

}

</script>

</body>

</html>

newpage.html 代码 需要打开的页面

复制代码 代码如下:

<!DOCTYPE HTML PUBLIC "-//IETF//DTD LEVEL1//EN">

<html>

<head>

<title>newpage.html</title>

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">

<meta http-equiv="description" content="this is my page">

<meta http-equiv="content-type" content="text/html; charset=UTF-8">

<>

</head>

<body>

<button id="btn">单击</button>

<script>

function fun(){

opener.show();

}

</script>

</body>

</html>

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新Javascript教程学习
    热门Javascript教程学习
    编程开发子分类