私の質問は、以前に数回尋ねられる可能性があることを知っています。私は多くの解決策を試しましたが、うまくいきませんでした。
XML ファイルからデータを取得する JQuery と PhoneGap を使用してモバイル アプリを構築しようとしています。
これは私のXMLファイルです:
<book>
<chapter id="1">
<title>title 1</title>
<question id="1.1"> Question 1 </question>
<answer id="1.1.1"> answer for q1 </answer>
</chapter>
<chapter id="2">
<title>title 2</title>
<question id="2.1"> Question 2 </question>
<answer id="1.2.1"> answer for q2 </answer>
</chapter>
</book>
これは私のJavaScriptです:
$(document).bind("pageshow", function() {
$.ajax({
type: 'GET',
url:'Book.xml',
datatype:'xml',
success:function(xml){
alert("success");
}
});
});
関数がある場合、成功アラートは表示されませんが、アラートがこのコードに表示される場合 $(document).bind("pageshow", function() {
$.ajax({
type: 'GET',
url:'Book.xml',
datatype:'xml',
success: alert("success");
});
});
これ以上コードを追加できないため、ここで立ち往生しています。