我用JQuery.Ajax嘗試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");
}
});
};
當我運行代碼,顯示文本更改而不是成功或失敗,爲什麼代碼不能成功或錯誤
什麼是json.type?一個可能的原因可能是語法錯誤,你的ajax甚至沒有執行。檢查你的控制檯。 – PSL