Greasemonkey 中的 $().keyup

发布于 2024-12-25 21:43:23 字数 419 浏览 1 评论 0原文

我有一个使用 jQuery 的 Greasemonkey 脚本。 jQuery 工作正常,例如我可以运行

$('input[name="captcha"]').attr('value', 'abcd');

并且它可以工作。 我也可以

$('input[name="captcha"]').keyup(function(){
    alert('');
});

在 Firebug 控制台中运行并获得结果。但在 Greasemonkey 中 keyup 似乎根本不起作用。不过 document.onkeyup = function() {alert('')} 也能很好地工作。

有什么想法可以修复它或获得类似的功能吗?

I have a Greasemonkey script which uses jQuery. jQuery works fine, for example I can run

$('input[name="captcha"]').attr('value', 'abcd');

and it works.
Also I can run

$('input[name="captcha"]').keyup(function(){
    alert('');
});

in Firebug console and get the result. But in the Greasemonkey keyup doesn't seem to work at all. However document.onkeyup = function() { alert('')} also works well.

Any ideas how can I fix it or get similar functionality?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦开始←不甜 2025-01-01 21:43:23

哦,事实上我找到了如何获得相同的结果。这很简单:(

var captcha_field = $('input[name="captcha"]')[0];
captcha_field.addEventListener('keyup', function(){
    alert('');
}, false);

但是很高兴知道 Greasemonkey 是如何工作的还是只是一个错误。)

Oh, in fact I found how to get the same result. It's easy:

var captcha_field = $('input[name="captcha"]')[0];
captcha_field.addEventListener('keyup', function(){
    alert('');
}, false);

(However would be nice to know is it how Greasemonkey is supposed to work or is it just a bug.)

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