|
|
|
คำสั่ง auto refresh div ด้วยจาวาสคริปเขียนแบบไหนค่ะ |
|
|
|
|
|
|
|
Code (JavaScript)
$(document).ready(function(){
refreshdiv();
});
functiion refrehdiv(){
Your code this
setTimeout(refreshdiv, 10000);
}
|
|
|
|
|
Date :
2014-08-12 21:50:24 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณสำหรับคำแนะนำน่ะค่ะ
$(document).ready(function(){
refreshdiv();
});
function refreshdiv() {
$("#random").load("load.html");
setTimeout(refreshdiv, 10000);
};
div ไม่ refresh เหมือนเดิมค่ะ
|
|
|
|
|
Date :
2014-08-12 22:14:33 |
By :
nongbee |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเปลี่ยนไปใช้แบบ event on ดูครับ
|
|
|
|
|
Date :
2014-08-13 09:56:19 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
<!doctype html>
<html class="no-js" lang="en">
<head>
<title>Bee</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script language="javascript" type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script language="javascript">
$(document).ready(function(){
refreshdiv();
});
function refreshdiv() {
$("#random").html( "test "+(Math.random()*10000000) );
setTimeout(refreshdiv, 1000);
};
</script>
</head>
<body>
<div id="random" />
</body>
</html>
ลองเอาอันนี้ไปทดสอบก่อนครับ แล้วดูผล
|
|
|
|
|
Date :
2014-08-13 11:37:39 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|