添加填充到ui-block-b

时间:2012-11-18 14:22:42

标签: javascript jquery

当我向类padding-left添加ui-block-b时,它的副作用是我的固定navbar也会获得此填充,这是我不想要的。我只想将填充应用于ui-block-b中的ui-gid-a。所以我尝试添加一个新类ui-block-b-own,但我没有在ui-block-b中获得填充:

CSS:

.ui-block-b-own {
   padding-left: 10px !important
}

这是代码:

function showDetails(index){

var suchresultat = search(); // gets either rezepte or result

$("#rezept h1").html(suchresultat[index].name);


    var inhalt = "";

var p = suchresultat[index].portionen; 
var m = suchresultat[index].menge;
var z = suchresultat[index].zubereitung;


 var textM = "";
 var textZ = "";


 for( var i = 0; i < m.length; i++ )
 {
       textM += "<br />" + m[i];
 }  

for( var i = 0; i < z.length; i++ )
 {
       textZ += "<br />" + z[i];
 }  

var por;
if (p == 1){  
por = "Portion:";
}
else {
por = "Portionen:";
}

inhalt += '<section class="ui-grid-a">';
inhalt += '<!-- Row1 -->';
inhalt += '<div class="ui-block-a"><strong>Zutaten für<br>'+ p + ' '+ por +'</strong></div>';
inhalt += '<div class="ui-block-b"><strong>Zubereitung:</strong></div>';
inhalt += '<!-- Row2 -->';
inhalt += '<div class="ui-block-a">' + textM + '</div>';
inhalt += '<div class="ui-block-b ui-block-b-own"' + textZ + '</div>';
inhalt += '</section>'; 

$("#rezeptInhalt").html(inhalt); // füllt page id rezept content

$.mobile.changePage($("#rezept"));

}

任何想法我做错了什么?

1 个答案:

答案 0 :(得分:0)

这看起来好像生成了无效的HTML。在您通过>插入内容之前,相关元素缺少其结束textZ。因此,CSS将无法正确应用,因为浏览器可能正在猜测节点的正确文本内容应该是什么。

inhalt += '<div class="ui-block-b ui-block-b-own">' + textZ + '</div>';
//----------------------------------------------^^^^