gpt4 book ai didi

jquery - 使用 jQuery 根据屏幕分辨率重定向?

转载 作者:太空狗 更新时间:2023-10-29 14:52:21 24 4
gpt4 key购买 nike

是否可以使用 JQuery 根据用户屏幕分辨率重定向到不同的 index.html?因此,例如,宽度不超过 1024 像素的屏幕转到 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

关于jquery - 使用 jQuery 根据屏幕分辨率重定向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4262289/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com