在jquery验证码验证中比较$ .post的值

时间:2014-08-27 19:20:16

标签: javascript php jquery

您好我已经为验证码验证编写了代码,但它不起作用,我缺少什么

 function validate() {

     $.post("http://localhost/test/captch.php?captcha=" + document.getElementById("captchaid").value, function (data) {
         alert("sss" + data);
         if (data != 'yes') {
             alert("invalid captcha");
             return false;
         }

     });
 }

0 个答案:

没有答案