我有一个 php 代码,它在页面加载和刷新时显示一个随机文件。此代码位于 ../ads/food/responce.php 中,您将在下面的其他脚本中看到。
<?php
$ad = glob("../ads/food/*.php");
$adfood = $ad[mt_rand(0, count($ad) -1)];
include ($adfood);
?>
我想旋转显示的文件而无需刷新页面。(“就像图像滑块一样”)
我试过的:
我尝试了一个脚本来刷新 div,但它似乎显示的是警告而不是文件。您可以在这里看到错误http://whatanswered.com/food/what-can -i-do-with-cornflour.php
<script type="text/javascript">
$(document).ready(function() {
setInterval(function()
{
$('#button').fadeOut("fast").load('../ads/food/responce.php').fadeIn("slow");
}, 10000);
});
</script>
<div id="button">
<?php include("../ads/food/responce.php");?>
</div>