jQuery 设置 externalWidth(true) - 宽度的更好方法
简而言之,有没有办法设置outerWidth?
$.outerWidth(true, newValue)
更新: 我发现一些插件可以做到这一点, 虽然我需要一个函数定义而不是 3 个插件来做到这一点。
In short, is there a way to set the outerWidth?
$.outerWidth(true, newValue)
Update:
I found some addons that do this,
although I need one function definition not 3 addons to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你们非常接近。对于 jQuery 1.8+,只需使用:
也适用于:
.innerWidth(val)
< /a>.innerHeight(val)
.outerWidth(val [, true])
.outerHeight(val [, true])
它实际上成为了 jQuery 1.8 的 setter。那是你发布问题一年后。此外,它被列在变更日志中,但没有人更新文档,这解释了它可能被错过了很多。
如果您有 jQuery 1.7.2 或更早版本,请参阅 Xeo 的答案(在此页面上)或使用jquery-ui 1.8.4+ 自动将这些方法增强为 getters/setters(因为在 jQuery 1.8 中,这些方法实际上是移植的 来自 jquery-ui)。
You were pretty close. With jQuery 1.8+, just use:
Also works for:
.innerWidth(val)
.innerHeight(val)
.outerWidth(val [, true])
.outerHeight(val [, true])
It actually became a setter with jQuery 1.8. That is 1 year after you posted your question. Moreover, it was listed in the changelog, but nobody updated the documentation which explains that it might have been missed by many.
If you have jQuery 1.7.2 or older, see Xeo's answer (on this page) or use jquery-ui 1.8.4+ which automatically enhances those methods into getters/setters (since in jQuery 1.8, those methods were actually ported from jquery-ui).
这是您要找的吗?
Is this what you're looking for?
如果你想设置元素的宽度,你可以使用这些例子
If you want to set the width of an element, you can use these examples