欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JS 在open打开的窗口中调用父页面JS方法

程序员文章站 2022-03-04 09:07:50
...

父窗口的弹出:

 

    function uploadImgFile(id){
        window.open("${base}/ajax/picupload.action?parentImgUrlId="+id,"","height=300, width=500, toolbar =no, menubar=no, scrollbars=yes, resizable=no, location=no, status=no");
        //document.getElementById(id).value = someValue;
    }

	function testfun(aaa){
		alert("111+"+aaa);
	}
 

 

 

 

在open 的窗口中调用

 

    function setParentImgUrl(){
    	window.opener.testfun('aaaaa');
        //window.opener.document.getElementById("${parentImgUrlId}").value = document.getElementById('img_url').value;
        window.close();
    }
 
相关标签: Ajax