水產試驗所-鐘弘育

網站

水產試驗所

姓名

鐘弘育

檢測日期

2018-05-03

檢測裝置

iphone 6

作業系統 與 瀏覽器版本

ios11.3

解析度(手機螢幕)

375x667

是否會自動跳入行動版欄位?


RWD的設計很差,且很多頁面連RWD都沒有,會直接跳到一般頁面

壞掉的連結

跑版(影響閱讀)問題

無法操作的網頁元素(如按鈕不能按、選單不能選等)

出現亂碼

不能用的外掛程式(Flash、ActiveX、Applet、Silverlight、…)

網站載入緩慢(相對一般網站)

大部分反應時間過長,會導致手機無法回應

閱讀模式

部分可以用

其他(無法判斷屬於以上那個分類的都放在這邊)

首頁
按下查詢之後只會出現空白頁面(解法回文連結)
IMG_395CE90E0BA7-1

對此網站建議(非程式問題皆放置這裡)

首頁 > 水產新聞 > 新聞稿
這樣的設計長得很不像放新聞的網頁,可以參考其他的新聞媒體網頁行動版設計
IMG_471783C24020-1

  • 網站另一個很嚴重的問題是RWD設計很差,把手機app的設計直接應用到網頁上會造成很多使用的不便,例如無法一眼看出所有資訊,現在大多數網站都會有圖片縮圖加上文字的設計。也沒有麵包屑設計,很難讓使用者知道自己身處哪個位置。另外,大多數網站都不是這樣設計,且漸層式設計已經是上個世代的網頁設計趨勢。還有各個區塊的標題使用這樣的設計會造成不明顯,很難閱讀。建議可以參考科技部的行動版網站設計。
1個讚

問題:

可能原因:

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>

補充:

asp&mp=2&q=1(iPhone 6_7_8)