安装了一个带有基本主题的裸 jquery。使用 jquery mobile 构建的几个网站在 inset 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>
是否列出了一些内容,例如我的屏幕截图中的格式,但每个内容都在
没有格式化+如果它变得很长,它会删除文本长度.. :(