最後活躍 1 month ago

disable_js_on_mobile.js 原始檔案
1// method 1
2function isMobile() {
3return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
4}
5
6if (!isMobile()) {
7//place script you don't want to run on mobile here
8
9}
10
11
12// method 2
13if (window.matchMedia('(min-width: 768px)').matches) {
14//place script you don't want to run on mobile here
15}