0
我想讓這個代碼生成10個圖像的隨機數,所以每次我點擊按鈕,我會得到一個隨機數的圖像,我只想這1個圖像和該按鈕不會消失,所以我可以再試一次。相同的隨機圖像推按一個按鈕
<!DOCTYPE html>
<html>
<body>
<input class="randombutton" type="button" value="Randomize" onclick="randomImg1()"/>
<script type="text/javascript">
function randomImg1() {
myImages1 = "Myimage.jpg";
var rnd = Math.floor(Math.random() * 10);
document.write(myImages1[rnd]);
}
</script>
</body>
</html>
random的* 10應該是數組中元素的個數。以上可能會產生未定義的圖像源。 – denov
@denov添加到解決方案 –
hmm .. iam嘗試你的代碼,但我仍然無法得到它的工作 –