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
我正在尝试设置.static
和fixed
的宽度,而我无法使用我使用的jQuery来使其工作。
答案 0 :(得分:2)
尝试使用以下语法:
$('.static').css({ width : _foabgwidth + "px" });
或者这个:
$('.static').css({ width : _foabgwidth });
希望这有帮助。