是否可以使用
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")