私のresponseTextの一部をJqueryとAjaxで分離したいと思います。Jquery Ajax find( "p")in responseText
$.ajax ({
url : "/controller/action",
complete : function (xhr, result)
{
if (result != "success") return;
var response = xhr.responseText;
var title = $(response).find("p");
title.appentTo ("#description");
}
});
私はresponse
のための素晴らしい作品が、私は
.find("p")
?
セレクタを受け入れることができます? – Tadeck
あなたのコードにはタイプミスがあり、それは広告付きのappendToでなければなりません。$( "#description")($演算子がありません) – Aaron
それを修正してもまだ動作しません:同じエラーがあります:304 Not Modified – Maxxx