我想寫一個表單,當用戶提交點擊提交時,ajax將數據添加到窗體下面的div。 我做了HTML表單,沒有任何jQuery,你可以使用POST提交表單,服務器上的相應的PHP吐出一個小XML文檔的答案。
我不知道該怎麼做才能讓jquery將XML文檔中的數據放入div中的html標記中。
返回的XML看起來是這樣的:
<?xml version="1.0"?>
<url_shortener>
<shortlink>http://newshorterlink.com/2</shortlink>
<longlink>Apple.com</longlink>
</url_shortener>
HTML表單是這樣的:
<script type="text/javascript">
$(document).ready(function(){
$("#url_shorten_form").submit(function() {
$.post(
'post_linkme.php',
$(this).serialize(),
function(data){
$("#result").html(data)
},
"xml"
);
return false;
});
});
</script>
</head>
<body>
<!-- Home -->
<div data-role="page" id="page1">
<div id="header" data-theme="a" data-role="header" class="header">
<h3>
Header
</h3>
</div>
<div data-role="content">
<!-- Form to shorten URL -->
<form id="url_shorten_form" action="" method="POST" class="url_shorten_form">
<div data-role="fieldcontain" class="long_url">
<label for="long_url">URL To Shorten</label>
<input name="long_url" id="long_url" placeholder="http://www.reallylongurl.com" value="" type="text">
</div>
<div data-role="fieldcontain" class="qr_generate">
<label for="qr_generate">Generate QR Code?</label>
<select name="qr_generate" id="qr_generate" data-theme="" data-role="slider" data-mini="true">
<option value="0">No</option>
<option value="1">Yes</option>
</select>
</div>
<input form="url_shorten_form" id="submit" type="submit" value="Submit" class="submit">
</form>
<!-- Response displaying new short url and QR Code if required -->
<div id="result" data-theme="a" class="result">
This Text to be replaced
</div>
我不明白,我需要做的就是XML解析,然後提交到div'result'
非常感謝,
會發生什麼?控制檯上是否有錯誤等? –
你不能加載封裝在CDATA標籤中的xml嗎? – karthikr
那麼,XML不是HTML,所以你可能需要將其轉換爲有效的HTML,然後再附加它。 –