gpt4 book ai didi

jquery - 如何在实景网站的Mobile View 中一键切换到桌面?

转载 作者:行者123 更新时间:2023-11-28 04:20:38 25 4
gpt4 key购买 nike

我已经在大多数手机上使用了此功能,但由于某些原因,iPhone 无法使用。

我创建了一个按钮并使用 jquery 更改了元标记:

$( document ).ready(function() {
$("#desktopversion").click(function(){
$('meta[name="viewport"]').prop('content', 'width=1380, initial-scale=0');
});
$("#nvs").click(function(){
$('meta[name="viewport"]').prop('content', 'width=1380, initial-scale=0');
});
});

但由于某些原因,该页面在 iPhone 上被截断

enter image description here

知道我可能做错了什么吗?

提前致谢!

最佳答案

请阅读这篇文章,它可能对你有帮助

https://webdevdoor.com/responsive-web-design/change-viewport-meta-tag-javascript

if (screen.width <= 480) {
document.getElementById("viewport").setAttribute("content", "width=480; initial-scale=0.5");
}

关于jquery - 如何在实景网站的Mobile View 中一键切换到桌面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42225000/

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