在这里,所有帮助都值得赞赏。我正在用php构建一个Web应用程序,并且正在使用Yii MVC框架,该框架具有很多内置工具。正如标题所示,我需要每10秒刷新一次div。目前我有这个ajax功能
<script type="text/javascript"> function ajaxFunction(){ var ajaxRequest; try{ // Opera 8.0+, Firefox, Safari ajaxRequest = new XMLHttpRequest(); } catch (e){ // Internet Explorer Browsers try{ ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try{ ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e){ // Something went wrong alert("Your browser broke!"); return false; } } } // Create a function that will receive data sent from the server ajaxRequest.onreadystatechange = function(){ var list = document.getElementById('logged_in_users_list'); if(ajaxRequest.readyState == 4){ list.innerHTML = ajaxRequest.responseText; setTimeout('ajaxFunction()',10000); } } ajaxRequest.open("GET", "protected/controllers/room/openRoom", true); ajaxRequest.send(null); } </script> <script type="text/javascript"> setInterval(function() {ajaxFunction();}, 5000); </script>
对于不熟悉Yii的人,它将大多数php文件存储在一个名为protected的文件夹中。就是这样,上面的代码ajaxRequest.open行要求将URL存储在受保护的文件夹中,因此我不断收到禁止访问的403错误。有什么想法可以实现与jquery不同的东西或解决此访问问题吗?
Usin jQuery
$(function() { function callAjax(){ $('#myDiv').load("http://yourdomain.com"); } setInterval(callAjax, 5000 ); });