我在 html 页面中有一个按钮。
<input type="image" src="images/login_button.png" id="imageButton" onclick="LoginButtonClick();" />
我在单击按钮时调用此方法:
LoginButtonClick = function() {
alert ("Button click event raised"); // this alert msg raising every time when onclick event occurs.
$.ajax({
alert ("Inside Ajax."); // This alert not executing first 1 or 2 times.
type: 'GET',
url: 'http://URL/Service.svc/LoginValidation',
dataType: 'json',
error: pmamml.ajaxError,
success: function(response, status, xhr) {
if (response != "") {
alert ("Response receive ");
}
else {
alert("Invalid Data.");
}
}
});
}
正如我上面提到的,$.ajax
首先 2 、 3 按钮单击尝试不起作用。
在 mozilla 中,它会抛出错误“[Exception...”组件返回失败代码:0x80004005 (NS_ERROR_FAILURE)”nsresult:“0x80004005 (NS_ERROR_FAILURE)”位置:“JS frame :: JQuery.js :: :: line 20”数据:不]”
有没有办法解决这个问题。。