我有这个脚本:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.0/jquery.min.js"></script>
<script type="text/javascript">
var updateGallery = setInterval(function() {
$('#gmap2').fadeOut('fast').load('map.php').fadeIn('fast');}, 10000);
</script>
需要加载文件(map.php)。
我在 index.php 页面中有这行代码;
<div id="gmap2"> <?php include 'map.php'; ?></div>
在 firefox 错误控制台中,我得到 Network error 404 File not found (http://domain.com/map.php) 即使我将完整的 url 路径放入 map.php 文件,我也得到了同样的错误。
感谢帮助