我想通過tab鍵導航,但focus()不工作。這是bootstrap table.here是我的code.check最後兩行。當我點擊n個單元格並再次導航它的工作。焦點不能在可編輯表格中工作
表代碼:
<table class="table table-bordered" id="tab1">
<thead class="mbhead">
<tr class="mbrow">
<th></th>
<th>A</th>
<th>B</th>
<th>C</th>
<th>D</th>
<th>E</th>
<th>F</th>
<th>G</th>
<th>H</th>
<th>I</th>
<th>J</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>asd</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>ddd</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</body>
</table>
編輯代碼:
function init(){
$("#tab1 tr td:not(:first-child)").on("click", function (e) {
console.log(e);
mytd=$(this);//mytd is defined here
if(e.currentTarget.contentEditable != null){
$(e.currentTarget).attr("contentEditable",true);
}
else{
$(e.currentTarget).append("<input type='text'>");
}
});
$(this).keydown(function (event) {
if (event.keyCode == 9){ // tab key for navigation
event.preventDefault();
$(mytd).next('td').html("abcd");//working
$(mytd).next('td').focus();//cursor is not moving
return false;
}
}
}
感謝名單。
thanx但不起作用。 – Amrendra 2013-03-11 11:33:04