我试图写一些检测代码。如果用户代理是iPad,那么请写下这个javascript,但它无效。
<script type="text/javascript">
if(navigator.userAgent.match(/iPad/i)) {
document.write('<script type="text/javascript"
src="photoswipe/code.photoswipe-3.0.4.min.js"></script>');
}
</script>
有什么想法吗?
答案 0 :(得分:2)
试试这个(来自David Walsh的博客:http://davidwalsh.name/detect-ipad):
// For use within normal web clients
var isiPad = navigator.userAgent.match(/iPad/i) != null;
// For use within iPad developer UIWebView
var ua = navigator.userAgent;
var isiPad = /iPad/i.test(ua) || /iPhone OS 3_1_2/i.test(ua) || /iPhone OS 3_2_2/i.test(ua);
使用它:
if(isiPad){
document.write('<script type="text/javascript" src="photoswipe/code.photoswipe-3.0.4.min.js"><\/script>');
}