我有这部分代码在 javascript 上运行良好:
document.getElementById("firma").onkeypress = function(e) {
return restrictCharacters(this,e,alphaOnly);
};
我是某些脚本的一部分,这部分在 id="firma" 上加入
我很想知道如果 jquery 中的这段代码是什么等价的?
有点像 $("#firma").....
我有这部分代码在 javascript 上运行良好:
document.getElementById("firma").onkeypress = function(e) {
return restrictCharacters(this,e,alphaOnly);
};
我是某些脚本的一部分,这部分在 id="firma" 上加入
我很想知道如果 jquery 中的这段代码是什么等价的?
有点像 $("#firma").....
这是 jQuery 等价物:
$('#firma').on('keypress', function(e) {
return restrictCharacters(this,e,alphaOnly);
});
$('#firma')
查找具有 ID 的元素firma
。该函数on
是附加事件侦听器的首选方式(此处的文档)。
试试下面
$('#firma').on('keypress', function(e) {
return restrictCharacters(this,e,alphaOnly);
});
$('#firma').keypress(function(e) {
// your code here
});