//-------- // 檢查當前瀏覽器是否為Netscape //-------- function isNetscape(){ app=navigator.appName.substring(0,1); if (app=='N') return true; else {return false;} }
//-------- // 保存當前Form表單(僅適用于IE瀏覽器) //-------- function formSaveCheck(fileName){ if(isNetscape()){alert("Sorry, these function is not supported")} else document.execCommand('SaveAs',null,fileName) }