JQuery.Ajax を使用して Web サービスとの通信を試みました
コードは次のようになります。
Main.onLoad = function() {
// Enable key event processing
this.enableKeys();
widgetAPI.sendReadyEvent();
//$("#h2Test").html("Change On Text");
$.ajax({
url : 'http://---.--.---.--:-----/_layouts/-----/------.asmx?op=retrieveEvents',
type : "POST",
dataType : 'json',
contentType : 'application/json',
data : {
url : "someURL"
},
success : function(response) {
$("#h2Test").html("SUCCESS");
},
failure : function(response) {
$("#h2Test").html("FAIL");
}
});
};
コードを実行すると、SUCCESS または FAIL の代わりに Change On Text が表示されます。コードが成功またはエラーにならないのはなぜですか