使用 jQuery 将宽度设置为百分比

发布于 2024-08-18 12:56:03 字数 35 浏览 0 评论 0原文

如何使用 jQuery 将 div 的宽度设置为百分比?

How can I set the width of a div as a percentage using jQuery?

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

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

发布评论

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

评论(3

夕嗳→ 2024-08-25 12:56:03

使用 width 函数:

$('div#somediv').width('70%');

会将: 变为

<div id="somediv" />

<div id="somediv" style="width: 70%;"/>

Using the width function:

$('div#somediv').width('70%');

will turn:

<div id="somediv" />

into:

<div id="somediv" style="width: 70%;"/>
厌味 2024-08-25 12:56:03

这是对我有用的替代方案:

$('div#somediv').css({'width': '70%'});

Here is an alternative that worked for me:

$('div#somediv').css({'width': '70%'});
请你别敷衍 2024-08-25 12:56:03

Hemnath

如果您的变量是百分比:

var myWidth = 70;
$('div#somediv').width(myWidth + '%');

如果您的变量以像素为单位,并且您希望它占父级的百分比:

var myWidth = 140;
var myPercentage = (myWidth / $('div#somediv').parent().width()) * 100;
$('div#somediv').width(myPercentage + '%');

Hemnath

If your variable is the percentage:

var myWidth = 70;
$('div#somediv').width(myWidth + '%');

If your variable is in pixels, and you want the percentage it take up of the parent:

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