我正在使用現代jQuery 1.5 ajax請求。到同一個域上的頁面。 我試圖改善內部網站使用油脂猴和jquery的行爲。jquery - ajax請求指定內容類型爲html
var jqxhr = $.ajax("anotherpage-response.html")
.success(function(data) {alert("cmp"); console.log(data);})
.error(function() { alert("error"); })
.complete(function() { alert("complete"); });
它當前正在作爲字符串返回。任何想法如何我可以得到它返回作爲一個dom像對象,我可以使用jquery選擇器進行?
我想我有點像fileType: html
後,但它似乎是在Ajax請求的選項。也許我只需要正確讀取api?
感謝
只是傳遞'data' jQuery的? '$(data)' –
順便說一句。該選項將是'dataType',但文檔說:*以純文本格式返回HTML,所以這不會幫助我想。 –