安装了一个基本主题的裸jquery。使用jquery mobile构建的几个网站将内容放在插入的listview元素中。但如果我尝试这个我无法得到任何体面的标题粗体或斜体。
什么是正确的方法来获取插入元素内的内容,如下面的屏幕显示,但具有像h1,h2等的基本格式?:(插入内容):
<div data-role="content" class="ui-content" role="main">
<ul data-inset="true" data-role="listview" class="ui-listview-inset ui-shadow">
<li>
Headings not correctly styled
<h1>test</h1>
<h2>test</h2>
<h3>test</h3>
</li>
</ul>
</div>
编辑:
使用此:
<div data-role="content" class="ui-content" role="main">
<ul data-role="listview" data-inset="true">
<li>
<h3>test</h3>
<h1>h1</h1>
</li>
<li>
<h3>jQuery Team</h3>
<p><strong>Boston Conference Planning</strong></p>
<p>In preparation for the upcoming conference in Boston, we need to start gathering a list of <strong>sponsors</strong> and speakers.</p>
</li>
</ul>
</div>
列出一些内容,例如我的屏幕截图中的格式,但是
之外的每个内容都没有格式化+如果它变长,它会删除文本长度.. :(