|
|
|
พี่ครับพอจะมีวิธีทำโหลดรอเข้าหน้าเว็บของ ajax บ้างไมครับ |
|
|
|
|
|
|
|
<img scr="test.gif"> //อยากได้รูปไหนก็ใส่ดูครับ
echo "<meta http-equiv='refresh' content='0;url=index.php'>" ;
|
|
|
|
|
Date :
2011-05-15 13:36:45 |
By :
มือใหม่หัดเขียนโปรแกรม |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวอย่าง
index.html
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" >
function getLeftMenu(){
$.ajax({
type: 'GET',url: 'readdata.php',data: 'action=getLeftMenu',cache: false,timeout: 100000,async:true,dataType: 'text/html',
error: function(){alert('Error loading document');},
beforeSend: function(){$("#left-menu").html("<img src='icon/load.gif'>");},
success: function(response){$("#left-menu").html(response);}
});
}
</script>
<table width="200" border="1">
<tr>
<td colspan="2">baner</td>
</tr>
<tr>
<td width="91"><div id="left-menu">Left <script type="text/javascript" >getLeftMenu();</script></div></td>
<td width="93">content</td>
</tr>
<tr>
<td colspan="2">footer</td>
</tr>
</table>
readdata.php
if($_GET["action"]=="getLeftMenu"){
?>
<table width="67" border="1">
<tr>
<td>home</td>
</tr>
<tr>
<td>product</td>
</tr>
<tr>
<td>contact</td>
</tr>
</table>
<?
}
ทำตัวอย่างให้ก็ตกหล่อนแหะเรา
|
ประวัติการแก้ไข 2011-05-16 00:18:29 2011-05-16 00:20:26 2011-05-16 00:21:17
|
|
|
|
Date :
2011-05-16 00:17:20 |
By :
chineji |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องหา icon load มาเองนะใส่ ไว้ใน folder icon มันจะได้แสดงการโหลด แต่ที่จริงจะให้มันโหลดแบบนี้ไม่ค่อยจะดีกับ seo
|
|
|
|
|
Date :
2011-05-16 00:23:48 |
By :
chineji |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|