我使用 JQuery.Ajax 尝试与我的网络服务进行通信
代码如下所示:
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");
}
});
};
当我运行代码时,显示更改文本而不是成功或失败,为什么代码没有达到成功或错误