|
|
|
สอบถามทุกท่านหน่อย ครับ เกี่ยวกับการแจ้ง สถานะ เมื่อมีการบันทึกข้อมูลใหม่ลง table ครับ |
|
|
|
|
|
|
|
รอคำตอบเหมือนกันครับ
|
|
|
|
|
Date :
2011-03-28 13:07:52 |
By :
avsqlz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ Ajax ทำงานเป็น Loop ครับ โดยใช้ SetTimeOut เรียกหน้า Web page ซ้ำ ๆ ตามระยะเวลาที่กำหนด เช่นทุก ๆ 1 นาทีรับ
Code (JavaScript)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body Onload="bodyOnload();">
<form name="frmMain" action="" method="post">
<script language="JavaScript">
function bodyOnload()
{
setTimeout("alertWelcome();",5000);
}
function alertWelcome()
{
alert('Welcome to www.ThaiCreate.Com');
bodyOnload();
}
</script>
</form>
</body>
</html>
Go to : Ajax setTimeOut
Go to : ขอคำแนะนำเกี่ยวกับการออกแบบฐาน และแนวการคิดสักหน่อยหน่ะครับ
Go to : อยากกำหนดเสียงให้หัวข้อกระทู้ที่มีการpost เข้ามาใหม่
Code (JavaScript)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body Onload="bodyOnload();">
<form name="frmMain" action="" method="post">
<script language="JavaScript">
function bodyOnload()
{
alert('aaaa');
setTimeout("alertWelcome();",5000);
}
function alertWelcome()
{
alert('bbb');
setTimeout("bodyOnload();",5000);
}
</script>
</form>
</body>
</html>
|
|
|
|
|
Date :
2011-03-28 21:25:55 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ พอได้แนวทางแล้ว
|
|
|
|
|
Date :
2011-03-29 13:00:57 |
By :
avsqlz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|