Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有一个使用模态的网站,我们希望让移动用户访问模态的内容,而无需将其加载到模态中。
有没有办法检测屏幕的分辨率并向这些用户显示不同的链接?
谢谢
我注意到你添加了 jQuery 标签。您可以使用 jQuery 来获取屏幕尺寸:
var width = $(window).width(); var height = $(window).height();
然后按照 adeneo 在评论中的建议更改链接