我是Javascript的新手,我有一个页面调用onkeyup
上的javascript函数,但是在调用它时会引发异常,Uncaught ReferenceError: validate is not defined
。
<script type="text/javascript">
function validate(id){
alert(id);
$.ajax({
url: "http://example.com/restaurant/submit/verify",
type: "POST",
dataType: 'json',
data: {
field: id,
content: $('#' + id).val()
}
success: function(data){
alert(data);
if(data.status == "PASSED"){
$('#' + id).removeClass('has-error');
$('#' + id).addClass('has-success');
} else if(data.status == "FAILED") {
$('#' + id).removeClass('has-success');
$('#' + id).addClass('has-error');
$('#' + id + ' div').append('<span class="help-inline">' + data.error + '</span>')
}
}
});
}
</script>
非常感谢任何帮助,如果您需要更多信息,请不要犹豫。感谢您的帮助。
答案 0 :(得分:1)
你忘记了逗号和分号:
function validate(id){
alert(id);
$.ajax({
url: "http://example.com/restaurant/submit/verify",
type: "POST",
dataType: 'json',
data: {
field: id,
content: $('#' + id).val()
}, // Here
success: function(data){
alert(data);
if(data.status == "PASSED"){
$('#' + id).removeClass('has-error');
$('#' + id).addClass('has-success');
} else if(data.status == "FAILED") {
$('#' + id).removeClass('has-success');
$('#' + id).addClass('has-error');
$('#' + id + ' div').append('<span class="help-inline">' + data.error + '</span>'); // and here
}
}
});
}