我正面臨着這個簡單的jQuery代碼的問題。jQuery的問題keydown
我重視的HTML結構,以及,
的代碼將焦點設置輸入字段的罰款,如果我做一個點擊ID爲股利的任何地方「上滾動窗格」,但如果我點擊其他地方在屏幕上,例如,在div id「scroll-pane」之上的代碼,它不會帶來焦點。我在這裏做錯了什麼?
<script language="javascript">
$(function()
{
$('.scroll-pane').jScrollPane();
$('#outerBody').keydown(function() {
$('#serialCode').focus();
});
});
</script>
<center id="outerbody">
<table id="tab1" class="Tab1" width="100%">
<tr>
<td width="60"></td>
<td width="113"><p align="center">C</td>
<td width="105"> </td>
</tr>
</table>
<table id="tab2" class="Tab2" border="0" width="100%">
<tr>
<td> </td>
<td>A </td>
<td>B </td>
<td><input type="text" id="serialCode" class="serialCode" /></td>
</tr>
</table>
<div id="scroll-pane" class="scroll-pane">
</div>
儘量不要使用''
缺少''? – sje397 2010-09-21 18:23:32