i 正在开发我的首个支旋涡轮机,对网络开发和总分类来说都是新的。
我在内容部分有以下html:
<div data-role="collapsible" data-collapsed="false" data-content-theme="c">
<h3>Results</h3>
<p id="UnitResult"> Results.. </p>
</div>
<div data-role="collapsible" data-collapsed="true" data-content-theme="c" >
<h3 id ="ShowAllh3">Show all</h3>
<ul id="AllUnitsResult" data-role="listview" data-inset="true" data-theme="d">
<li>list element</li>
<li>list element 2</li> </ul>
</div>
我也有一个<代码><input category=" number” 。
$( #UnitResult ).html(volume + " " + fromText + " equals " + result + " " + toText + ".");
$( #ShowAllh3 ).text( test );
for(var i = 0; i < resultArray.length; i++) {
$( #AllUnitsResult ).append( <li class = "number"> + Units[i].name + : + resultArray[i] + </li> );
}
The problem i have is that the styling of these elements change when i add new html tags in realtime, is there any way to avoid this?
在任职前:
职能要求:
你们可以看到,列入清单的新内容看上去很奇怪,而标题是“一切”改为“测试”,但格式已经采用。