代码(重要点):
当前文件要是 xxx.js文件,就需要写好代码后调用才会执行:
// 判断是不是安卓
const isAndroid = () => {return /android/.test(navigator.userAgent.toLowerCase());
}// 判断是不是ios
const isIOS = () => {return /iphone|ipad|ipod/.test(navigator.userAgent.toLowerCase());
}if (isAndroid()) {console.log('是安卓')cai.showNativeShare(string)cai.shareWebContent()
} else if(isIOS()) {console.log('是ios')cai.showNativeShare(string)
}
切记一定要执行才会判断,否则相当于函数写了但是没调用函数.
不会判断:
会判断:
所以写了判断函数是对的,但是必须调用才会执行判断.