如何使用此 jQuery 插件允许粘贴事件?
我使用以下 jQuery 插件只允许用户输入某些字母数字字符。有人可以告诉我如何更新它以便允许粘贴事件吗?
input.keypress(function (e) {
var key = String.fromCharCode(!e.charCode ? e.which : e.charCode);
if (ch.indexOf(key) !== -1 && !e.ctrlKey) {
e.preventDefault();
}
});
I'm using the following jQuery plug-in to only allow users to enter certain alpha numeric characters. Can someone please tell me how to update it so it will allow the paste event?
input.keypress(function (e) {
var key = String.fromCharCode(!e.charCode ? e.which : e.charCode);
if (ch.indexOf(key) !== -1 && !e.ctrlKey) {
e.preventDefault();
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您从
keypress
更改为keyup
事件,那么用户将能够在代码启动并验证之前完成粘贴。以下是不同事件的演示:http://jsfiddle.net/FckGw/
If you change from the
keypress
to thekeyup
event then the user will be able to complete their paste before the code kicks in and validates.Here is a demo of the different events: http://jsfiddle.net/FckGw/