問題:
可能原因:
javascript設置錯誤
原始程式:
位置:行政院農業委員會-水產試驗所全球資訊網 :119
<script language="javascript">
function OpenWindow(url){
var OpenWindow = window.open('', '水試所SearchG2查詢', 'location=no,width=330,height=440');
OpenWindow.document.write('<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd"><html><frameset cols="100%"><frame name="main" title="手機版search用框架" LONGDESC="link to:%E6%89%8B%E6%A9%9F%E7%89%88search%E7%94%A8%E6%A1%86%E6%9E%B6" src="'+url+'" marginwidth="0" marginheight="0" scrolling="auto"></frameset></html>');
}
function emptyword(){
document.getElementById("queryWord").value="";
}
function goSearch(){
qw=document.getElementById("queryWord").value;
path="http://210.69.36.6:8080/searchg2-frontend/wSite/Control?function=BrowseCate&doReQuery=true&fieldName=fullText&groupNames=f002&resource=fri_global_pda&queryWord=";
OpenWindow(path+encodeURIComponent(qw));
}
function goAdvSearch(){
qw=document.getElementById("queryWord").value;
path="http://210.69.36.6:8080/searchg2-frontend/wSite/Control?function=SearchIndex&resource=fri_global_pda";
OpenWindow(path);
}
</script>
建議修改:
更新search的網址
提供window.open連結
進階搜尋因無網址,無法修正
<script language="javascript">
function OpenWindow(url){
var OpenWindow = window.open(url, '水試所SearchG2查詢', 'location=no,width=330,height=440');
}
function emptyword(){
document.getElementById("queryWord").value="";
}
function goSearch(){
qw=document.getElementById("queryWord").value;
path="https://www.tfrin.gov.tw/sp.asp?xdurl=search%2FsearchList.asp&mp=2&q=";
OpenWindow(path+encodeURIComponent(qw));
}
function goAdvSearch(){
qw=document.getElementById("queryWord").value;
path="http://210.69.36.6:8080/searchg2-frontend/wSite/Control?function=SearchIndex&resource=fri_global_pda";
OpenWindow(path);
}
</script>
補充: