jQuery 设置 externalWidth(true) - 宽度的更好方法

发布于 2024-11-28 03:09:10 字数 159 浏览 1 评论 0原文

简而言之,有没有办法设置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 技术交流群。

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

发布评论

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

评论(3

静水深流 2024-12-05 03:09:10

你们非常接近。对于 jQuery 1.8+,只需使用:

.outerWidth(newValue, 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:

.outerWidth(newValue, true);

Also works for:

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).

若言繁花未落 2024-12-05 03:09:10

这是您要找的吗?

var a = $('element');
    actualWidth = a.outerWidth(true),
    desiredWidth = 1000,
    difference = desiredWidth - actualWidth,

a.css('width',difference);

Is this what you're looking for?

var a = $('element');
    actualWidth = a.outerWidth(true),
    desiredWidth = 1000,
    difference = desiredWidth - actualWidth,

a.css('width',difference);
别想她 2024-12-05 03:09:10

如果你想设置元素的宽度,你可以使用这些例子

var a = $("#element");

a.width(10);
a.css("width", "10px");

If you want to set the width of an element, you can use these examples

var a = $("#element");

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