温馨提示:这篇文章已超过584天没有更新,请注意相关的内容是否还可用!
oWidth为获取的网站宽度,然后判断oWidth宽度数值是否小于某分辨率,如果成立就可以加载改变样式文件或触发事件等等,可以自由发挥了。
<script type="text/JavaScript">
var oWidth = document.documentElement.clientWidth || document.body.clientWidth;
if (oWidth < 1024) {}
else {
window.location.href = "httPs://www.hu6.cc/";
}
window.addEventListener("orientationchange", function () {
var oWidth = document.documentElement.clientWidth || document.body.clientWidth;
if (oWidth < 1024) {}
else {
window.location.href = "https://www.hu6.cc/";
}
}, false);
window.addEventListener("resize", function () {
var oWidth = document.documentElement.clientWidth || document.body.clientWidth;
if (oWidth < 1024) {}
else {
window.location.href = "https://www.hu6.cc/";
}
}, false);
</script>
还没有评论,来说两句吧...