问题描述
- 查看页面指定元素的js代码,请问一下应该怎么做?。。。
-
这里的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(); }
时间: 2024-10-31 19:28:17