jQuery使用变量设置Width

时间:2013-08-11 18:03:45

标签: jquery

var _headerwidth = $('#header').width();
var _foabgwidth = $('#page-body-inner').width();

console.log(_headerwidth);
console.log(_foabgwidth);
$('.static').css("width",_foabgwidth + "px");
$('.fixed').css("width",_headerwidth + "px");
var staticwidth = $('.static').width();
console.log('staticwidth:'+staticwidth);

使用上面的代码,我的控制台日志如下

940
676
staticwidth:null

我正在尝试设置.staticfixed的宽度,而我无法使用我使用的jQuery来使其工作。

1 个答案:

答案 0 :(得分:2)

尝试使用以下语法:

$('.static').css({ width : _foabgwidth + "px" }); 

或者这个:

$('.static').css({ width : _foabgwidth }); 

希望这有帮助。