您好我已经为验证码验证编写了代码,但它不起作用,我缺少什么
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;
}
});
}