PC判断是否为手机,代码如下
<script type="text/javascript">
!function () {
function params(u, p) {
var m = new RegExp("(?:&|/?)" + p + "=([^&$]+)").exec(u);
return m ? m[1] : '';
}
if (/iphone|android|ipod/i.test(navigator.userAgent.toLowerCase()) == true && params(location.search, "from") != "mobile") {
location.href = '';
}
}();
</script>
移动端判断是否为PC,代码如下
<script type="text/javascript">
! function() {
if (/iphone|android|ipod/i.test(navigator.userAgent.toLowerCase()) == false) {
location.href = '';
}
}();
document.documentElement.style.fontSize = document.documentElement.clientHeight/document.documentElement.clientWidth<1.5 ? (document.documentElement.clientHeight/603*312.5+"%") : (document.documentElement.clientWidth/375*312.5+"%");
</script>
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。