是否可以使用ajax更改網頁的內容? 我的需求是實際改變選擇的選項。 比如我x123.com/setting.html
使用Ajax更改網頁的內容
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Webpage</title>
<script>
function save_changes() {
//save the selection
}
</script>
</head>
<body>
<select name="" multiple>
<option value="123">123</option>
<option value="456">456</option>
</select>
<input type="button" name="Submit Dude" onclick='save_changes()'>
</body>
</html>
我想從x123.com/123.html
給出的請求,並刷新當前頁面(x123.com/123.html
),以便在x123.com/setting.html
的變化實際上反映了這一點。
讓我知道我的解釋不清楚。
我有一篇博客文章,展示瞭如何做到這一點...... http://events.manzwebdesigns.com /?p = 111 – manzwebdesigns
檢查以下鏈接www.w3schools.com/ajax/default.asp http://www.javascriptkit.com/dhtmltutors/ajaxgetpost.shtml – Balanivash