我用简单的ajax创建了简单的html文件。
index.html :
<html> <head> <meta http-equiv="Content-Type" content="text/html; Charset=UTF-8"> <script type="text/javascript" src="jquery.js"></script> </head> <body> <div id="content"></div> <script> function show() { $.ajax({ url: "2.html", cache: false, success: function(html){ $("#content").html(html); } }); } $(document).ready(function(){ show(); setInterval('show()',1000); }); </script> </body> </html>
文件 2.html 与文件 index.html 位于同一目录中。并包含例如:
<p>ssss hkl jh lkh <b>d1111</b></p>
当我在网络服务器上运行 index.html 时,一切正常。但是,如果您在计算机上将文件 index.html 作为本地文件运行,则ajax无法正常工作。如何解决?
如果正在检查,这是Chrome的已知问题。使用XAMPP运行本地Web服务器,并测试您的Ajax调用。
查看这张票:https : //code.google.com/p/chromium/issues/detail?id=40787