我正在處理聯繫表單。 我使用這個表單驗證:http://plugins.jquery.com/project/form-validation-and-hints 和我使用一個驗證碼,將代碼存儲在$ _SESSION ['captchacode']變量中。 我想要完成的是簡單地檢查使用jQuery驗證程序,如果用戶輸入好驗證碼。 那怎麼檢查功能的工作原理:captcha使用php會話變量+ jquery驗證
function isTypeValid(type, value) {
var cap = <?php echo $SESSION["captchacode"];?>;
if(type == classprefix + 'Text') {
return true;
}
if(type == classprefix + 'Captcha') {
if(value==cap){
return (true);
}else{
return false;
}
}
}
我搜索了幾個線程這裏和其他地方,這就是在那裏我得到
var cap = <?php echo $SESSION["captchacode"];?>;
從
。
我也試過這樣:
var cap = "<%= Session['captchacode'] %>";
,並沒有幫助... 任何想法?
什麼是使用jQuery的驗證碼valudation點? –