如何使用此 jQuery 插件允许粘贴事件?

发布于 2024-12-23 08:42:49 字数 282 浏览 0 评论 0原文

我使用以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终止放荡 2024-12-30 08:42:49

如果您从 keypress 更改为 keyup 事件,那么用户将能够在代码启动并验证之前完成粘贴。

以下是不同事件的演示:http://jsfiddle.net/FckGw/

If you change from the keypress to the keyup 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文