当在父页面上单击按钮时,我需要关闭一个弹出窗口。
我正在使用的代码是:
var targetWin = null;
function PopupCenter(URL, title,w,h) {
var URL
var w
var h
w = 1150;
h = 800;
URL = 'http://www.google.co.uk';
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
targetWin = window.open (URL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}
$("#closeout").click(function(){
targetWin.close();
});
父页面上的按钮:
<div id="closeout">
<a href="crewint.php">
<img src="../images/logout.png" width="97" height="70" border="0" />
</a>
</div>
在阅读其他帖子之后,我尝试了一些方法,但我一定做错了。
非常感谢你的时间。