我想将单选按钮放在表格中(使用 twitter bootstrap 渲染)。问题是单选按钮不适用于 IE8(无法单击)。它与 FF 或 Chrome 完美配合。
小提琴代码:http : //jsfiddle.net/WuBa5/8/但小提琴似乎不适用于 IE8。
这是代码:
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Choisir</th>
<th>Version</th>
<th>Date de Création</th>
<th>Commentaire</th>
</tr>
</thead>
<tbody data-bind="foreach: Versions">
<tr data-bind=" attr: { 'name': $index }" name="0">
<td>
<input type="radio" data-bind=" value: id" name="radiosImport" value="bb1e7d68-fef4-7e4a-bbfe-c39238d2e712"></td>
<td data-bind=" text: name">1.0</td>
<td data-bind=" text: commitDate">Version ouverte non archivée</td>
<td data-bind=" text: description">Initialisation de la base de données 12-08-2013</td>
</tr>
<tr data-bind=" attr: { 'name': $index }" name="1">
<td>
<input type="radio" data-bind=" value: id" name="radiosImport" value="aa6f304d-696d-ac41-9e7c-d4ef02dc5711"></td>
<td data-bind=" text: name">1.1</td>
<td data-bind=" text: commitDate">Version ouverte non archivée</td>
<td data-bind=" text: description">MAJ DB</td>
</tr>
</tbody>