在此代码Ajax
中无法识别,但其他 jQuery 方法或选择器工作正常。
new Ajax.Request(form.action,{
method: 'POST',
postBody: params,
onSuccess: function(response) {
var responseText = response.responseText || '[]';
var json = responseText.evalJSON();
if (json.success) {
alert("json.sucess")
onSuccessfulLogin(form.j_username.value);
}
else if (json.error) {
alert("json.error")
$("form").enable(document.ajaxLoginForm);
}
else {
alert("responseText"+responseText);
$("form").enable(document.ajaxLoginForm);
}
}
});
我需要添加一些其他库或 jar 吗?我正在使用jquery 1.7.2
.