Internet Explorer 再次来袭!在 IE7 和 8 中,敲除无法绑定到定义列表。如果我使用与下面相同的代码但将其更改为无序列表,那么一切都会变魔术。Unfortunatley UX 团队说我应该使用定义列表,所以不确定在这里做什么?有什么想法吗?
<ul data-bind="foreach: geofences">
<li class="geofenceData">
<h3 data-bind="text: Alias, click: $root.selectGeofence"></h3>
<div class="holder" >
<dl class="datalist">
<dt>@LanguageResources.Geofence.Name.Text</dt>
<dd><span data-bind="text: Alias"/></dd>
<dt>@LanguageResources.Geofence.IsPrimary.Text:</dt>
<dd><span data-bind="text: IsPrimary"/></dd>
</dl>
</div>
</li>
</ul>