我正在爲獲得什麼似乎是一個合理簡單的腳本功能而努力,我希望在瀏覽器刷新時隨機使用七個Div。使用jQuery隨機加載div
的HTML顯示爲這樣:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Strict</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="jquery-1.9.1.min.js"></script>
<script>
var divs = $("div.Image").get().sort(function(){
return Math.round(Math.random())-0.5; //random so we get the right +/- combo
}).slice(0,4)
$(divs).show();
</script>
</head>
<body>
<div class="Image"><img src="image1.jpg">1</div>
<div class="Image"><img src="image2.jpg">2</div>
<div class="Image"><img src="image3.jpg">3</div>
<div class="Image"><img src="image4.jpg">4</div>
<div class="Image"><img src="image5.jpg">5</div>
<div class="Image"><img src="image6.jpg">6</div>
<div class="Image"><img src="image7.jpg">7</div>
</body>
</html>
在那裏的jQuery腳本應該是:
var divs = $("div.Image").get().sort(function(){
return Math.round(Math.random())-0.5; //random so we get the right +/- combo
}).slice(0,4)
$(divs).show();
CSS限制爲:
div.Image {
display: none;
}
沒有加載在所有的,目前。
我還是這個品牌的新手,所以如果這是最基本的,我將不得不原諒自己。
偉大的東西人,謝謝你的所有信息!我相信這是在圖像之前加載的腳本。 – spl 2013-03-04 11:24:58