Mobil版本重定向

时间:2018-11-30 21:36:29

标签: javascript redirect mobile

我正在尝试自定义一个cargo2模板,并且无权访问html head,body和css。我可以,但是可以将meta标签添加到头部。 我正在尝试根据屏幕大小重定向到移动版本,这是我到目前为止使用的版本,但是由于我无法访问html头部,因此无法正常工作

<script type="text/javascript">
<!--
if (screen.width <= 700) {
window.location = "http://www.mobile-site.com";
}
//-->
</script>

有帮助吗? 谢谢!

1 个答案:

答案 0 :(得分:0)

尝试使用window.innerWidthwindow.outerWidth

查看更多:https://developer.mozilla.org/en-US/docs/Web/API/Window/innerWidth