座机咨询电话
0744-8383800
头条的审核还是非常严格的,很多客户都为之颤抖。
不过,据其他客户反馈,据说审核还有BUG的,那么今天根据这个BUG来写个JS代码搞定审核的问题。
那就是电脑端打开是审核页面,手机端正常访问落地页就可以。
代码如下:
<script>
if (!/iPhone|iPad|iPod|iOS|Android|Windows Phone|webOS|BlackBerry|HUAWEI/i.test(navigator.userAgent)) {
window.location.href = "/ttjc/index.html";
}
</script>
其中:window.location.href = "/ttjc/index.html"; 里面的 /ttjc/index.html 改成你自己的审核页面地址,或者路径就可以。
是不是很简单。