|
发表于 2015-7-30 17:08:46
if (document.cookie.indexOf("apt") == -1) {
var exp = new Date();exp.setTime(exp.getTime() + 36000000);document.cookie = "apt=1;expires=" + exp.toGMTString();
var UA = window.navigator.userAgent.toLowerCase();
var isIOS = /iphone|ipod|ipad/gi.test(UA);
var isAndroid = UA.indexOf('Android') > -1 || UA.indexOf('Adr') > -1;
if(isIOS || isAndroid){
document.write('');
}
}
|
显示全部楼层
|