/** * 關閉頁面,兼容各瀏覽器(解決ie提示框問題) */ function closeWindow(){ if (navigator.userAgent.indexOf("Firefox")!=-1 || navigator.userAgent.indexOf("Chrome")!=-1) { window.location.href = 'about:blank' window.close() } else { window.opener = null window.open('', '_self', '') window.close() } }