我在这里遇到了一些麻烦,我有一些脚本是从这个链接jQuery, random div order中获取的,这个脚本我用来用 MySQL 调用我的查询。
我的问题是,例如我有 8 条记录,但我已经限制只显示 4 条记录,我希望所有记录都可以显示,即使我已经限制显示它。如何?
这里是我的模型
public function get_ads_query(){
$row = $this->db->get('advertise');
return $row;
}
这是我的代码
<div id="advertentie" class="advcontainer">
<?php
$row = $this->M_front->get_ads_query();
$row = $row->result();
foreach($row as $ads):
?>
<div class="adblock"><img src="<?php echo base_url(); ?>images/advertise/<?php echo $ads->Picture; ?>" /></div>
<?php endforeach;?>
</div>
这里是jquery
var $container = $(".advcontainer");
setInterval(function(){
$container.html(shuffle($container.children().get()));
}, 1500);
$(".advcontainer div").each(function(){
var color = $(this).attr("class");
$(this).css({backgroundColor: color});
});
function shuffle(o){
for(var j, x, i = o.length; i; j = parseInt(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x);
return o;
};
谢谢你