可能重复:
Javascript onkeypress
我的网站上有很多页面。 (使用dot.net)
我在javascript中编写了一个onKeypress事件函数,我的所有文本框都应该使用它(在整个站点中)。
我该如何做到这一点?
答案 0 :(得分:0)
您正在寻找一个keydown活动。 这是GitHub上的一个库
https://github.com/jeresig/jquery.hotkeys
$(expression).bind(types, keys, handler);
$(expression).unbind(types, handler);
$(document).bind('keydown', 'ctrl+a', fn);
// e.g. replace '$' sign with 'EUR'
$('input.foo').bind('keyup', '$', function(){
this.value = this.value.replace('$', 'EUR');
});