出力を形式で返すjQueryAjax
リクエストを作成します。XML
これにアクセスXML
しPHP
てデータを処理したい。以下は私のコードのサンプルです...
getTime.php ファイル
<?php
header("Content-type: text/xml");
echo '<Dates>';
echo '<Now ';
echo 'val="' . date("h:m:s") . '" ';
echo '/>';
echo '</Dates>';
//echo date("h:m:s");
?>
index.php ファイル
jQuery(document).ready(function(e) {
$('#btnTime').click(function(){
getData("GetTime.php");
});
});
function getData(strUrl)
{
$.ajax({
type: "POST",
url: strUrl,
dataType: "xml",
success: function(output){
// I want to Retrieve this XML Object (output) to PHP
}
});
}
で jQuery によって出力された XML にアクセスするにはどうすればよいPHP
ですか? 私を助けてください..