JavaScript頁面重新整理與快顯視窗問題的解決方案

來源:互聯網
上載者:User

一、無提示重新整理網頁
大家有沒有發現,有些網頁,重新整理的時候,會彈出一個提示視窗,點“確定”才會重新整理。而有的頁面不會提示,不彈出提示視窗,直接就重新整理了. 如果頁面沒有form,則不會彈出提示視窗。
如果頁面有form表單,
  a)< form method="post" ...> 會彈出提示視窗
  b)< form method="get" ...> 不會彈出
二、javascript重新整理頁面的方法
window.location.reload();
使用window.open()彈出的快顯視窗,重新整理父視窗
window.opener.location.reload()
使用window.showDialog彈出的強制回應視窗
window.dialogArguments.location.reload();
三.javascript快顯視窗代碼
下面給兩個彈出螢幕置中視窗的例子 複製代碼 代碼如下:window.open()方式
function ShowDialog(url) {
var iWidth=300; //視窗寬度
var iHeight=200;//視窗高度
var iTop=(window.screen.height-iHeight)/2;
var iLeft=(window.screen.width-iWidth)/2;
window.open(
url,"Detail","Scrollbars=no,Toolbar=no,Location=no,Direction=no,Resizeable=no,
Width="+iWidth+" ,Height="+iHeight+",top="+iTop+",left="+iLeft
);
}
window.showModalDialog方式
function ShowDialog(url) {
var iWidth=300; //視窗寬度
var iHeight=200;//視窗高度
var iTop=(window.screen.height-iHeight)/2;
var iLeft=(window.screen.width-iWidth)/2;
window.showModalDialog(
url,window,"dialogHeight: "+iHeight+"px;dialogWidth: "+iWidth+"px;
dialogTop: "+iTop+"; dialogLeft: "+iLeft+"; resizable: no; status: no;scroll:no"
);
}

注意這裡的第二個參數,window
四、強制回應視窗中,連結彈出新視窗問題
在< /head >和< body >間加入< base target="_self" >
五、無提示關閉頁面的方法 複製代碼 代碼如下:function CloseWin(){
var ua = navigator.userAgent; var ie = navigator.appName==
"Microsoft Internet Explorer"?true:false;
if(ie){
var IEversion = parseFloat(ua.substring(ua.indexOf("MSIE ")+5,
ua.indexOf(";",ua.indexOf("MSIE "))));
if( IEversion< 5.5){
var str = ;
document.body.insertAdjacentHTML("beforeEnd", str);
document.all.noTipClose.Click();
} else {
window.opener =null; window.close();
}
}else{
window.close()
}
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.