jquery设置div的宽度
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 CSS 中,长度需要一个单位,在本例中很可能是像素 (
px
):In CSS lengths require a unit, in this case most likely Pixel (
px
):