使用jQuery基于屏幕分辨率重定向?

前端之家收集整理的这篇文章主要介绍了使用jQuery基于屏幕分辨率重定向?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以使用 JQuery根据用户的屏幕分辨率重定向到不同的index.html?例如,1024px宽的屏幕到1024.html,其他所有屏幕都转到普通的index.html?

我最好喜欢使用jQuery.任何帮助将不胜感激!

谢谢!

解决方法

你不需要jQuery.

您可以使用screen.width,which works in all browsers

if (screen.width <= 1024) window.location.replace("http://www.example.com/1024.html")
else window.location.replace("http://www.example.com/index.html")

http://www.dynamicdrive.com/dynamicindex9/info3.htm

原文链接:https://www.f2er.com/jquery/175693.html

猜你在找的jQuery相关文章