附加但风格不更新

时间:2016-11-09 11:46:43

标签: javascript jquery css

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);
一切顺利,我能够看到我身高的高度,

enter image description here

但是没有应用高度?

2 个答案:

答案 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);