我想在按键上调用具有焦点的表行上的java脚本函数。下面是代码,但是当我按下Enter键时,不会调用脚本函数。
http://jsfiddle.net/sirishkumar/58FZG/19/
<input id="test" type="text">
<table>
<tr onkeypress="return openLog(e,'row 1')">
<td>Row 1</td>
</tr>
<tr onkeypress="return openLog(e,'row 2')">
<td>Test</td>
</tr>
</table>
var j = jQuery;
var currentRow = 0;
var pagesize = 2;
function ChangeCurrentRow() {
var tableRow = document.getElementsByTagName("tr")[(currentRow % pagesize)];
tableRow.focus();
j(tableRow).siblings().removeClass("highlight-row");
j(tableRow).addClass("highlight-row");
}
j(document).ready(function () {
j('#test').val("Ready");
ChangeCurrentRow();
});
j(document).keydown(function (e) {
if (e.keyCode == 38) {
currentRow--;
ChangeCurrentRow();
return false;
}
if (e.keyCode == 40) {
currentRow++;
ChangeCurrentRow();
return false;
}
});
function openLog(e, id) {
if (e.keyCode == 13) {
$('#input').text(id)
}
return true;
}
答案 0 :(得分:0)
行没有“聚焦”。你的focus()
什么都不做。试着写一下:
j(tableRow).focus(function(){alert('test');});
tableRow.focus();
你什么也看不见=)
尝试在$(document).keypress()
中处理按键事件,并使用所选行进行操作。 onkeypress
表示tr - 什么都不做(contenteditable="true"
tr除外)。