我在我的網站上有滑塊,我想在裏面顯示隨機照片。我的HTML代碼如下:在我的網站滑塊上顯示隨機照片
<li class="swiper-slide item telef" data-id="1" style="width:250px; height:10px;">
<div class="phone" style="display:none;">
<a href="http://xxx.pl/pl/xxxx/prestizowy/_/apple_iphone_7_256_gb">
<img src="<?= $basePath ?>images/iphone7_sl.png"
style="width:130px; height:250px; margin-left:auto;
margin-right:auto;" alt="">
</a>
<div class="caption">
<a href="http://xxxx.pl/pl/xxxxx/prestizowy/_/apple_iphone_7_256_gb">
iPhone <strong>7</strong>
</a>
</div>
</div>
</li>
我有大約20列表項和我的jQuery腳本是:
$(document).ready(function() {
display = 6;
var divs = $('.phone').get().sort(function(){
return Math.round(Math.random())-0.5;
}).slice(0,6);
$(divs).show();
});
但是這個腳本不起作用。哪裏有問題?
*隱而不宣」工作*? – Liam