js 關閉頁面時,彈出窗口

關閉頁面時,彈出窗口。只ie。

 

/****** popup a window while closing*****/
window.onbeforeunload = function (){
	openWin("b.html","",520,380);
	//alert("close");
	if (event.clientX < document.body.clientWidth && event.clientY<0 ||event.altKey){
	//alert("close.........");
	}else{
	//alert("flush");
	}
}

 

/***** open window *****/
function openWin(url,title,width,height){
	//titlebar=0,toolbar=0,menubar=0
	window.open(url,title,"width="+width+",height="+height+",top=200,left=350");
}

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章