Greasemonkey 中的 $().keyup
我有一个使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
哦,事实上我找到了如何获得相同的结果。这很简单:(
但是很高兴知道 Greasemonkey 是如何工作的还是只是一个错误。)
Oh, in fact I found how to get the same result. It's easy:
(However would be nice to know is it how Greasemonkey is supposed to work or is it just a bug.)