Asynchronous JavaScript and XML

Home

AJAX Tutorial
Knowledge Developer Database Internet Resource
ผลลัพธ์

<html>
<head>
<script type="text/javascript">
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","ajax_sampletext.txt",true);
xmlhttp.send();
}
</script>
</head>
<body>

<div id="myDiv"><h2>ให้ AJAX เปลี่ยนข้อความนี้</h2></div>
<button type="button" onclick="loadXMLDoc()">เปลี่ยนเนื้อหา</button>

</body>
</html>

ให้ AJAX เปลี่ยนข้อความนี้

สงวนลิขสิทธิ์ (C) widebase / Julaphak