|
|
|
ขอถามเรื่องของ การเด้ง alert ของ Javascript เมื่อทำการดึงข้อมูลแบบ Ajax |
|
|
|
|
|
|
|
index.php
<script type="text/javascript" src="js/jquery-1.4.1.min.js"></script>
<script type="text/javascript">
$(function(){
setInterval(function(){
var getData=$.ajax({ // ใช้ ajax ด้วย jQuery ดึงข้อมูลจากฐานข้อมูล
url:"gdata.php?username=<?echo $username?>",
data:"rev=1",
async:false,
success:function(getData)
{
$("div#showData").html(getData); //นำข้อมูลมาแสดง
}
}).responseText;
},1000);
});
</script>
<div id="showData"></div>
gdata.php
<?php
header("Content-type:text/html; charset=UTF-8");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
?>
<script>alert('ลอง');</script
Tag : PHP, Ajax, JSP
|
|
|
|
|
|
Date :
2014-02-22 15:22:26 |
By :
FreshyMusiC |
View :
1063 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็คือ Javascript มันไม่ทำงาน หลังจากเรียก Ajax มา
|
|
|
|
|
Date :
2014-02-22 15:23:48 |
By :
FreshyMusiC |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
gdata.php ลองแบบนี้ดูนะครับ
Code (PHP)
<?php
header("Content-type:text/html; charset=UTF-8");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
echo "<script>alert('ลอง');</script>";
?>
|
|
|
|
|
Date :
2014-02-22 18:42:57 |
By :
ผู้มาเยือน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|