サンプルの XML ファイルがあります。
<?xml version="1.0"?>
<people>
<person>
<name> Joe </name>
<age> 45 </age>
</person>
<person>
<name> Dan </name>
<age> 25 </age>
</person>
</people>
アイデアは、jQuery を使用して各人の名前を取得することです。$.ajax( { } );
call を使用してデータを取得する際に問題が発生しています。
次のサンプル コードをクリーンアップする方法を教えてください。
$.ajax( {
url:"people.xml",
dataType: "json",
success:function(element,value)
{
$(element).find(value).each(function()
{
alert($(this).find("name").text()
});
});
}
}
);