我目前正在开发一个新网站,并且正在测试这些功能。我的所有代码都可以工作,但返回一个错误,我不明白也不知道如何解决。
<script type="text/javascript">
var eval = "Indtast CPR-nummeret, der skal valideres.";
$(document).ready(function () {
$("#showads").html($("#ads").html());
});
function cprToBool(cpr){
$.get('ajax.php',{ content: cpr }, function(data) {
eval = data;
$("#cprinput").val(eval);
$("#cprinput").blur();
});
$("#showads").html($("#ads").html());
}
function checkSubmit(e)
{
if(e && e.keyCode == 13)
{
cprToBool($("#cprinput").val());
}
}
</script>
调试后,我很确定它是
$("#showads").html($("#ads").html());
这导致了这些错误。它返回
Uncaught TypeError: Object Indtast CPR-nummeret, der skal valideres. has no method 'call'
这是eval
变量的名称。有人知道它为什么这样做吗?
PS。我已经正确地包含了 jQuery。