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... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE)" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: JQuery.js :: :: line 20" data:」というエラーがスローされます。番号]"
この問題を解決する方法はありますか..