disable_js_on_mobile.js
· 198 B · JavaScript
原始文件
function isMobile() {
return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
}
if (!isMobile()) {
//place script you don't want to run on mobile here
}
| 1 | function isMobile() { |
| 2 | return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent); |
| 3 | } |
| 4 | |
| 5 | if (!isMobile()) { |
| 6 | //place script you don't want to run on mobile here |
| 7 | |
| 8 | } |
| 9 |