jQuery设置高度,动态宽度

时间:2010-12-31 10:43:13

标签: jquery

我需要更改< div>的高度和宽度使用jQuery

我尝试了以下代码

jQuery('#chart_popup').css('height','600px');
jQuery('#chart_popup').css('width','450px');

我需要在一个声明中做任何建议吗?

感谢。

2 个答案:

答案 0 :(得分:3)

jQuery('#chart_popup').css( {width : '30px', height : '10px'} )

答案 1 :(得分:2)

你可以像这样一击......

jQuery('#chart_popup').css({height: "600px", width: "450px"});