Javascript / iPhone - 如何调整浏览器视口的大小?

发布于 2024-11-09 03:07:59 字数 382 浏览 0 评论 0原文

如何动态调整 iOS 设备的视口大小?我正在使用 jQuery 附加视口元标记。但只调整视口大小一次。通过 attr('content', 'width=newwidth') 修改内容属性,这不起作用(它的 jquery 1.5,在 attr()/prop() 更改之前)

示例:

// This works once
$('head').append($('<meta name="viewport" content="width=640; user-scalable=no">'));

// Does not work
$meta.attr('content', 'width=1024; user-scalable=no');

How do I dynamically resize the viewport for iOS devices? I'm using jQuery to append the viewport meta tag. But only resizes the viewport once. Modifying the content attribute via attr('content', 'width=newwidth') which doesn't work (its jquery 1.5, prior to attr()/prop() change)

Example:

// This works once
$('head').append($('<meta name="viewport" content="width=640; user-scalable=no">'));

// Does not work
$meta.attr('content', 'width=1024; user-scalable=no');

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

动次打次papapa 2024-11-16 03:07:59

$meta.attr('内容', '宽度=1024; 用户可扩展=否');

想念你的结肠兄弟

$meta.attr('content', 'width=1024; user-scalable=no');

missed your colon dude

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文