我想把单选按钮放在一个表格中(用twitter bootstrap渲染)。 问题是单选按钮不能与IE8一起使用(无法点击)。 它与FF或Chrome完美配合。
fiddlecode: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>
答案 0 :(得分:0)
我终于找到了答案。 问题是JQuery没有自动关闭输入标记。 我更改了JQuery代码以生成输入:
tdbodyRadio.append("<input type='radio' data-bind='value: id' name='radiosImport' onchange='EventOnModal.onClickRadio();'/>");