從shuffle函數開始(只需洗牌數組)。有用。 然後,我定義了2個全局變量,它們將確定要在頁面上顯示的圖像的隨機順序。 picOrder將是一個從0到picCount的簡單數組,picCount由Ajax onload決定。正在檢索picCount,但未設置picOrder數組!如果我手動運行「arrangePics();」在它的控制檯中工作。它填充數組picOrder,然後洗牌。但是,通過將調用放在「」中的這兩個函數或將「doStuff()」函數放在那裏不起作用。需要2個函數在Ajax上運行onLoad - 只有1個工作
Array.prototype.shuffle = function() {
var s = [];
while (this.length) s.push(this.splice(Math.random() * this.length, 1)[0]);
while (s.length) this.push(s.pop());
return this;
}
var picOrder = new Array();
var picCount;
function getPicCount() {
// picCount = array(10);
if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
} else {// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
picCount = xmlhttp.responseText;
}
}
xmlhttp.open("GET","/example.com/images.php?count=hello",true);
xmlhttp.send();
//picCount.shuffle;
}
function arrangePics() {
for(var i = 0;i<picCount;i++) {
picOrder[i] = i;
}
picOrder.shuffle();
//alert(picOrder);
}
HTML
<body onLoad="getPicCount();arrangePics();">
或
<body onLoad="doStuff();">