当存在浮动元素时找出可用空间(宽度)

发布于 2024-12-08 10:31:06 字数 155 浏览 0 评论 0原文

我有一个浮动元素 (float:left) 宽度约为 500px 右侧的空间 有没有办法通过 jQuery 找出有多少可用空间?我想动态地执行此操作,并且喜欢 jQuery 的方式。

所以我想插入一个元素并让它与可用空间一样大。

I've got a floated element (float:left) width approximately 500px of space on the right Is there a way, to find out how much space is available via jQuery? I want to do this dynamically and would love a jQuery way.

So I want to insert an element and let it be as big as there is space available.

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

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

发布评论

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

评论(1

风透绣罗衣 2024-12-15 10:31:06

您的内容是否插入固定宽度的容器中?如果是这样,只需计算左浮动元素的确切宽度,然后从容器的宽度中减去它。

如果不是固定宽度的容器,请先计算宽度。

示例:

<div>
    <span style="float:left;">a</span>
</div>

第三个元素的最终宽度:

var availWidth = $('div').width() - $('span').width(); //Use proper selectors here

Is your content inserted in a fixed-width container? If so, just calculate the exact width of your left-floated element and subtract it from the width of the container.

If it's not a fixed-width container, calculate that width first.

Example:

<div>
    <span style="float:left;">a</span>
</div>

The resulting width, for your third element:

var availWidth = $('div').width() - $('span').width(); //Use proper selectors here
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文