var dom = '<div data-id="'+id+'" class="box box_album_item"><div class="album_item" style="background: url('+img_src+') no-repeat center center; background-size: cover; height="'+ $('#album_item .album_item:first').outerWidth() +'px"></div></div>';
$('#abc').append(dom);
一切顺利,我能够看到我身高的高度,
但是没有应用高度?
答案 0 :(得分:0)
从 height =&#34; 更改为身高:
var dom = '<div data-id="'+id+'" class="box box_album_item"><div class="album_item" style="background: url('+img_src+') no-repeat center center; background-size: cover; height:'+ $('#album_item .album_item:first').outerWidth() +'px"></div></div>';
答案 1 :(得分:0)
你提到&#34; height =&#34;,你给的是一种非属性使用的风格&#34;身高:&#34;代替。 var dom =&#39; &#39 ;;
$('#abc').append(dom);