close
有些圖片在手機瀏覽器版面會太大
原始的網頁不是用RWD設計,所以只好這樣改~
把圖片縮小
sample code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
var x; | |
$(document).ready(function () { | |
function checkserAgent(){ | |
var userAgentInfo=navigator.userAgent; | |
var userAgentKeywords=new Array("Android", "iPhone" ,"SymbianOS", "Windows Phone", "iPad", "iPod", "MQQBrowser"); | |
var flag=false; | |
if(userAgentInfo.indexOf("Windows NT")==-1){ | |
flag=true; | |
} | |
return flag; | |
} | |
if(checkserAgent()){ | |
$("#<%=Chart3.ClientID %>").css({ 'width': '900px', 'height': '500px' }); //手機瀏覽器 | |
} | |
}); | |
</script> |
全站熱搜