jquery设置di​​v的宽度

发布于 2024-09-26 15:46:58 字数 236 浏览 5 评论 0原文

我正在尝试使用 jquery 设置 div 的宽度。

这就是我尝试设置 div 大小的方式

$('#page').css("width",data[0]['imageWidth']);

,这就是我尝试设置的 div

<div id="page">
 </div>

任何帮助将不胜感激

I'm trying to set the width of a div using jquery.

this is how I'm trying to set the size of the div

$('#page').css("width",data[0]['imageWidth']);

and this is the div I'm trying to set

<div id="page">
 </div>

any help with this would be much appreciated

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

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

发布评论

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

评论(1

不可一世的女人 2024-10-03 15:46:58

在 CSS 中,长度需要一个单位,在本例中很可能是像素 (px):

$('#page').css("width",data[0]['imageWidth'] + "px");

In CSS lengths require a unit, in this case most likely Pixel (px):

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