我尝试使用jquery自动刷新。但我的页面本身不会重新加载
这是我的控制器:
class Count_controller extends CI_Controller {
public function index()
{
$this->load->view('count_view', @a);
}
public function table()
{
$a = rand(1000, 5000);
echo $a;
}
}
我的观点在这里:
<html>
<head>
<title></title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
setInterval("auto_refresh_function();", 500);
function auto_refresh_function() {
$('#load_content').load('http://demo1.com/demo/count_controller/table');
}
</script>
</head>
<body>
<div id="load_content">Loading</div>
</body>
</html>
这是我的.htaccess:
RewriteEngine on
RewriteCond $1 !^(index\.php|static|js|css|gif|png|jpg|robots\.txt|html)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
有人能帮帮我吗?
谢谢
答案 0 :(得分:2)
setInterval();
期望存在匿名函数。然后,这个匿名函数可以调用你需要的函数。
试试这样:
setInterval(function(){auto_refresh_function();}, 500);