这里的url是http://www.lecai.com/user/login/?from=head_nav,我要的是要查看是
《span id="captcha_info" style="margin-left:0;"》点击输入框出验证码《/span》相对应的js代码,最好有图文教程。。。。在线等。。。。。。。。。。。。。
一般这个都不是用js写的,那个url就是请求到一个后台服务,通过后台服务,输出验证码,然后在页面显示。
是这段吧。
$('#verify').one('focus',function(){
$.captcha('captcha');
$('#captcha_info').hide();
$('#float_register_captcha_span').show();
}).bind('focus',function(){
hideInfo(this);
});
function hideInfo(tar){
$(tar).removeClass('fl-login-error-input').closest('.fl-reg-list').find('.fl-reg-showinfo').hide();
}
用网站小偷,下载下来就能看到了