function toSearch(){ var content =document.getElementById("mySearch").value; if(content=="" || content=="null" || content==null){ alert("請輸入搜索內容"); return; } var url=""; if(location.href.indexOf("localView")!=-1){ if(location.href.indexOf("ft")!=-1){ url = "/"+"wjdjt/localView/ft/script/search.html?"+content; }else{ url = "/"+"wjdjt/localView/script/search.html?"+content; } }else{ if(location.href.indexOf("ft")!=-1){ url = "/ft/script/search.html?"+content; }else{ url = "/script/search.html?"+content; } } //document.location.href = encodeURI(url); window.open(encodeURI(url)); }