jQuery:修改输入的结构
我今天写这篇文章是因为我需要一些 jquery 中简单函数的帮助来修改输入 [reCaptcha] 的结构并隐藏显示的图像。
包含 reCaptcha 插件的页面代码为:
可以在 Jquery 中实现吗?
前 - - - - - - - - - - - - - - - - - - - - - - - - - -----------> 之后
>
(因为我看过一个脚本的视频[用 Js/Jquery 制作] 可以实现这种效果:-(
我已经尝试过,但什么也没有:-(
PS:我无法修改页面的原始结构:-( ...我想用 Greasemonkey 注入 Jquery。
提前致谢。
亲切的问候
Luca。
i have wrote today because i need some help with a simple function in jquery for modify the structure of an input [reCaptcha] and hide the image showed.
The code of the page(s) that contains the reCaptcha plugin is:
Is possible to make this in Jquery?
BEFORE ------------------------------------------------------------> AFTER
>
(Because i have saw a video of a script[Made in Js/Jquery] that make this effect :-(
I have tryed but nothing :-(
P.S: I can't modify the original structure of the page :-( ... I would like to inject the Jquery with Greasemonkey.
Thanks in advance.
Kind Regards
Luca.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 CSS 将 DIV 元素放置在文本和验证码的输入区域上吗?
在此处查看完整的源代码: http://gist.github.com/632560
如果您修改代码(我使用的是第 1 页中的代码)到以下内容:
然后将以下 CSS 添加到您的页面:
它将覆盖您想要覆盖的元素。然后,您可以在需要时使用 jQuery 显示/隐藏这些元素,如下所示:
编辑: 响应您的评论.. 试试这个:
You could use CSS to place DIV elements over the text and the input area of the captcha?
Check out the complete source here: http://gist.github.com/632560
If you modify your code (I am using the code from page 1) to the following:
And then you add the following CSS to your page:
It will cover the elements you want covered. You can then use jQuery to show/hide these elements when you want like so:
EDIT: In response to your comment.. Try this: