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
andの幅を設定しようとしてfixed
いますが、使用した jQuery を使用して動作させることができません。