0
これは私が<ul>
の幅を得ることができない問題です。ULの幅を取得
htmlファイル:
<ul>
<li>image goes here</li>
<li>image goes here</li>
<li>image goes here</li>
</ul>
CSSファイル:
ul {
display: inline-block;
white-space: nowrap;
}
li {
width: 90px;
height: 90px;
display: inline-block;
}
ここでは、jQueryのコードの例です:
$(document).ready(function(){
var $width = $('ul').width();
console.log('width: ' + $width);
});
それはULの幅を取得する方法0を返しますか?
を私は 'ディスプレイを忘れてしまいました。 –
@BatgerelEnkhbat私のソリューションもうまく動作しています^^でも、あなたが幸運を逃したものを見つけたことをうれしく思っています –