日期:2014-05-16 浏览次数:20477 次
var myPage;
function openMyPage(){
if (!myPage || myPage.closed){
myPage=window.open("demo.html", "_blank");
myPage.blur();
}
else{
alert("new.htm is already opened.");
}
}
//关闭上面打开的 IE 窗口
function closeMyPage(){
myPage.close();
}
//置前 IE 窗口
function focusMyPage(){
myPage.focus();
}
//置后 IE 窗口
function blurMyPage(){
myPage.blur();
}