0
使用jQuery的四四方方打電話給我captche覆蓋我:jQuery的四四方方的問題
<script>
$(document).ready(function() {
var zahl1 = Math.floor(Math.random()*11);
var zahl2 = Math.floor(Math.random()*31);
//$("#cap").html("Wie viel ist "+zahl1+" + "+zahl2+"? <input type='text' id='answer' />");
$("#shortbutton").live("click", function() {
ask();
return false;
});
});
function ask()
{
zahl1 = Math.floor(Math.random()*11);
zahl2 = Math.floor(Math.random()*31);
var sum = zahl1 + zahl2;
new Boxy.ask("Wie viel ist "+zahl1+" + "+zahl2+"? <input type='text' id='answ' />",
["Ok"],
function(val) {
if($("#answ").val() == (zahl1 + zahl2))
{
$("#form").submit();
}
else
{
ask();
return false;
}
},
{title: "Captcha"}
);
}
</script>
的代碼是有點不乾淨......函數調用它們selfts ...我知道...但我怎麼才能讓在輸入新聞中輸入「OK」事件...
因此,您編寫答案並按Enter鍵並檢查。
有一些想法嗎?