jQuery:修改输入的结构

时间:2010-10-18 16:14:11

标签: javascript jquery input structure

我今天写了因为我需要一些jquery中的简单函数的帮助来修改输入结构[reCaptcha]并隐藏显示的图像。

包含reCaptcha插件的页面代码为:

http://pastebin.com/Qahph2ZB

可以在Jquery中制作吗?

BEFORE ---------------------------------------------- --------------> AFTER

BEFORE> AFTER

(因为我看过一个剧本的视频[Made in Js / Jquery],这会产生这种效果: - (

我试过但没有尝试: - (

P.S:我无法修改页面的原始结构:-( ...我想用Greasemonkey注入Jquery。

提前致谢。

亲切的问候

卢卡。

1 个答案:

答案 0 :(得分:1)

您可以使用CSS将DIV元素放在验证码的文本和输入区域上吗?

在此处查看完整的来源:http://gist.github.com/632560

如果您将代码(我使用第1页的代码)修改为以下内容:

<div id="DivCaptcha">
    <!-- <span class="Instructions" id="Instructions">Fill the captcha.</span> -->
    <span class="Instructions" id="Instructions">Fill the captcha.</span>
    <form onsubmit="return submit();" action="">
    <div id="captcha-container">
        <script type='text/javascript'> var RecaptchaOptions = { theme : 'white' }; </script> <script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LfF970SAAAAAFR6KJNsdJX6Itf43k_HWbxRcU4a "></script>
        <noscript>
            <iframe src="http://api.recaptcha.net/noscript?k=6LfF970SAAAAAFR6KJNsdJX6Itf43k_HWbxRcU4a " height="300" width="500" frameborder="0"></iframe><br/>
            <textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
            <input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
        </noscript>       
        <div id="cover-captcha">
        </div>      
        <div id="cover-input">
        </div>
    </div>
    <input type="submit" id="submit" value="Submit!">
</div>

然后将以下CSS添加到您的页面:

#captcha-container {
    position:relative;
}
#cover-captcha {
    position:absolute;
    top:10px;
    left:10px;
    width:295px;
    height:55px;
    z-index:9999;
    background-color:#fff;
}
#cover-input {
    position:absolute;
    top:96px;
    left:26px;
    width:150px;
    height:20px;
    z-index:9999;
    background-color:#fff;
}

它将涵盖您想要涵盖的元素。然后,您可以使用jQuery在需要时显示/隐藏这些元素:

<input type="button" id="show-hide" value="Show/Hide Captcha fields"/>
<script>
    $("#show-hide").click(function(e){
        $("#cover-captcha, #cover-input").toggle();
    });
</script>

编辑:回复您的评论..试试这个:

$("#recaptcha_response_field").hide();
$("#recaptcha_image").hide();