我认为这可能与我的代码或 css 有关,但我可以在 JSFiddle 中重现它:
<body>
<div data-role="page" id="index">
<div style="padding:20px">
<div>Here's the problem - this dynamicaly populated collapsable set should have rounded corners:</div>
<div id="output" data-role="collapsible-set" data-inset="true" data-theme="c"></div>
<div>If I use the same content but do not render it dynamically, it is fine:</div>
<div id="static" data-role="collapsible-set" data-inset="true" data-theme="c">
<div data-role="collapsible">
<h2>Container 1</h2>
<ul data-role="listview" data-filter="true" data-filter-theme="c" data-divider-theme="d"></ul>
</div>
<div data-role="collapsible">
<h2>Container 2</h2>
<ul data-role="listview" data-filter="true" data-filter-theme="c" data-divider-theme="d" start="" id="category-0" end="">
<li><a onclick="email_choose_template.selectTemplate(0)" href="javascript:void(0)" style="padding-left:62px"><img src="../../images/email_icon.png" style="width:40px; height:42px; float:left; margin-left:10px; margin-top:4px; "><h3 style="font-size:12px;">Template 1</h3></a>
</li>
<li><a onclick="email_choose_template.selectTemplate(1)" href="javascript:void(0)" style="padding-left:62px"><img src="../../images/email_icon.png" style="width:40px; height:42px; float:left; margin-left:10px; margin-top:4px; "><h3 style="font-size:12px;">Template 2</h3></a>
</li>
</div>
<div>Why the difference?</div>
</div>
</body>
<script>
$('#output').append('<div data-role="collapsible"><h2>Container 1</h2><ul data-role="listview" data-filter="true" data-filter-theme="c" data-divider-theme="d"></ul></div><div data-role="collapsible"><h2>Container 2</h2><ul data-role="listview" data-filter="true" data-filter-theme="c" data-divider-theme="d" start="" id="category-0" end=""><li><a onclick="email_choose_template.selectTemplate(0)" href="javascript:void(0)" style="padding-left:62px"><img src="../../images/email_icon.png" style="width:40px; height:42px; float:left; margin-left:10px; margin-top:4px; "><h3 style="font-size:12px;">Template 1</h3></a></li><li><a onclick="email_choose_template.selectTemplate(1)" href="javascript:void(0)" style="padding-left:62px"><img src="../../images/email_icon.png" style="width:40px; height:42px; float:left; margin-left:10px; margin-top:4px; "><h3 style="font-size:12px;">Template 2</h3></a></li>');
$('#output').trigger('create');
</script>
每当我在可折叠集上运行 trigger('create') 时,它似乎无法标记需要圆角的第一个孩子和最后一个孩子。
有任何想法吗?我已经没有想法了,减去渲染后自己手动应用类..