問題
建議修改
可能是網名改了,google 過後得到這個網站http://www.agriculture.gov.au/biosecurity
看要不要改成這個網址
問題
#可能原因
RWD id設定錯誤
原始程式
位置:https://www.boca.gov.tw/sp-foof-countrylp-01-1.html :220
function categoryClick(id) {
if ($("#" + id).length > 0) {
if (window.innerWidth < 767) {
$("html, body").animate({ scrollTop: $("#" + id + "2").offset().top - 20 }, 600);
}
else {$("html, body").animate({ scrollTop: $("#" + id).offset().top - 10 }, 600);
}
}
}
建議修改
id只有做 #africa等等的純粹PC用的,程式提到的類似#africa2這樣為了innerwidth<767而特別做的id們根本不存在,因此後面的包含.offset()會直接讀不到
function categoryClick(id) {
if ($("#" + id).length > 0) {
$("html, body").animate({ scrollTop: $("#" + id).offset().top - 10 }, 600);
}
}
問題
可能問題
如圖,首先GA(Google Analytics)沒有load成功,其次是這個(看起來是廣告用的?)ad_status也沒有成功
請檢查一下檔案連結有沒有失效