我想捕获TAB按键,取消默认操作并调用我自己的javascript函数。
答案 0 :(得分:236)
编辑:由于您的元素是动态插入的,因此您必须在示例中使用delegated on()
,但是您应该将其绑定到keydown事件,因为正如@Marc注释, IE按键事件不会捕获非字符键:
$("#parentOfTextbox").on('keydown', '#textbox', function(e) {
var keyCode = e.keyCode || e.which;
if (keyCode == 9) {
e.preventDefault();
// call custom function here
}
});
查看示例here。
答案 1 :(得分:17)
jQuery 1.9中的工作示例:
$('body').on('keydown', '#textbox', function(e) {
if (e.which == 9) {
e.preventDefault();
// do your code
}
});
答案 2 :(得分:12)
$('#textbox').live('keypress', function(e) {
if (e.keyCode === 9) {
e.preventDefault();
// do work
}
});
答案 3 :(得分:7)
上面显示的方法对我来说不起作用,可能是我使用的是旧的jquery,然后最后显示的代码片段适用于 - 发布以防万一我处于相同位置
$('#textBox').live('keydown', function(e) {
if (e.keyCode == 9) {
e.preventDefault();
alert('tab');
}
});
答案 4 :(得分:4)
在标签上使用按键的一个重要部分是知道标签总是会尝试做某事,不要忘记最后“返回假”。
这就是我所做的。我有一个在.blur上运行的函数和一个交换我的表单焦点所在的函数。基本上它会在表单的末尾添加一个输入,并在模糊运行计算时去那里。
$(this).children('input[type=text]').blur(timeEntered).keydown(function (e) {
var code = e.keyCode || e.which;
if (code == "9") {
window.tabPressed = true;
// Here is the external function you want to call, let your external
// function handle all your custom code, then return false to
// prevent the tab button from doing whatever it would naturally do.
focusShift($(this));
return false;
} else {
window.tabPressed = false;
}
// This is the code i want to execute, it might be different than yours
function focusShift(trigger) {
var focalPoint = false;
if (tabPressed == true) {
console.log($(trigger).parents("td").next("td"));
focalPoint = $(trigger).parents("td").next("td");
}
if (focalPoint) {
$(focalPoint).trigger("click");
}
}
});
答案 5 :(得分:3)
试试这个:
$('#contra').focusout(function (){
$('#btnPassword').focus();
});
答案 6 :(得分:1)
假设你有一个带有Id txtName的文本框
$("[id*=txtName]").on('keydown', function(e) {
var keyCode = e.keyCode || e.which;
if (keyCode == 9) {
e.preventDefault();
alert('Tab Pressed');
}
});
答案 7 :(得分:1)
您可以使用this JQuery API捕获事件标签。
Set colFiles = objFolder.Files
答案 8 :(得分:-1)
这对我有用:
$("[id*=txtName]").on('keydown', function(e) { var keyCode = e.keyCode || e.which; if (keyCode == 9) { e.preventDefault(); alert('Tab Pressed'); } });