2

当我将一个添加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"));

}

任何想法我做错了什么?

4

1 回答 1

0

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

inhalt += '<div class="ui-block-b ui-block-b-own">' + textZ + '</div>';
//----------------------------------------------^^^^
于 2012-11-18T15:42:26.503 回答