我使用http://jsfiddle.net/eLENj/493/作为在 li 元素中创建 2 个堆叠按钮的指南。
这是我正在使用的代码
'<li><div class="ui-grid-a">' +
'<div class="ui-block-a" style="width: 75%;">' +
'<div data-role="fieldcontain">' +
'<h3>Address Details:</h3>' +
'<p>Address 1</p>' +
'</div>' +
'</div>' +
'<div class="ui-block-b" style="width: 25%; float: right;">' +
'<div data-role="controlgroup" data-type="horizontal" style="height: 20px;">' +
'<a href="index.html" data-role="button" data-icon="map">Map</a>' +
'<a href="index.html" data-role="button" data-icon="delete">Delete</a>' +
'</div>' +
'</div>' +
'</div>' +
'</li>').listview('refresh');
但我最终得到的是两个看起来像“MapDelete”的“常规”超链接。任何想法为什么按钮没有正确呈现?