龙
龙卷风2005
Unregistered / Unconfirmed
GUEST, unregistred user!
许多需要认证或注册的网站往往加了注册码,多数的注册码是图片并保存在本地Cookie中,但有些网站使用超连接动态获取注册码,且并不在本地Cookie或临时文件中保存,网页源代码如下:
function checkvote(){
if (form1.ccode.value.length!=4) {
alert("请正确填写验证码!"
form1.ccode.focus();
return false;
}
}
....
<tr>
<td height="30" align="right">验 证 码:</td>
<td><input name="ccode" type="text" class="input1" size="4" maxlength=4></td>
<td align="right">请照此填写:</td>
<td><script src="http://202.99.23.250/px2005/ccode.php"></script></td>
<td>&nbsp;</td>
</tr>
...
其中,当IE或WebBrower下载网页时超连接http://202.99.23.250/px2005/ccode.php将自动获取验证码并显示.
请问:程序如何同步获得验证码?
function checkvote(){
if (form1.ccode.value.length!=4) {
alert("请正确填写验证码!"
form1.ccode.focus();
return false;
}
}
....
<tr>
<td height="30" align="right">验 证 码:</td>
<td><input name="ccode" type="text" class="input1" size="4" maxlength=4></td>
<td align="right">请照此填写:</td>
<td><script src="http://202.99.23.250/px2005/ccode.php"></script></td>
<td>&nbsp;</td>
</tr>
...
其中,当IE或WebBrower下载网页时超连接http://202.99.23.250/px2005/ccode.php将自动获取验证码并显示.
请问:程序如何同步获得验证码?