zoukankan      html  css  js  c++  java
  • js 调用父窗口的方法

    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">
        
        <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
    
      </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">
        
        <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
    
      </head>
      
      <body>
        <button id="btn" onclick="fun()">单击</button>
    	<script>
    		
    	function fun(){
    		opener.show();
    	}
    		
    	</script>
      </body>
    </html>
    



  • 相关阅读:
    shell编程 之 引号、括号的用法总结
    shell编程 之 文件包含
    shell编程 之 输入输出重定向
    shell编程 之 流程控制(条件语句和循环语句)
    shell编程 之 函数
    IOS 定位
    IOS添加多个按钮在导航栏
    移除UIView上面的所有控件
    UITabBarController
    IOS 调用拨打电话Api
  • 原文地址:https://www.cnblogs.com/jiangu66/p/3192257.html
Copyright © 2011-2022 走看看