<div id="frametop" style="display: none;"> 內文內文內文內文內文內文內文內文內文內文內文 </div> var $ofweidht=innerWidth; //取得螢幕寬度 if($ofweidht>=1280){ //設定判斷條件,大於等於1280時frametop的CSS屬性為block document.getElementById("frametop").style.display='block'; } 範例:依照USER瀏覽器大小切換對應網址。 var $ofweidht=innerWidth; if($ofweidht<=800){ //小於等於800 document.location.href="hneodw.com/neil/?web=網站A"; }else{ document.location.href="hneodw.com/neil/?web=網站B"; } USER瀏覽器小於等於800-->網站A USER瀏覽器大於800-->網站B