我是Java语言的新手,但我尝试使用onload()设置默认图像,但我认为它无法达到我在数组中设置的图像,因此我不知道为什么。
单击按钮后,我将使它旋转图像,但是我什至无法获得要添加的默认图像。
var images = ['img/profile.jpg', 'img/mountain.jpg', 'img/sanfran.jpg'];
var num=1;
function loadPage()
{
document.getElementById("pictures").src = images[0].src;
}
function nextImage(pictures)
{
var img = document.getElementById("pictures");
document.getElementById("pictures").src = images[1].src;
console.log(num++); // I have this just to make sure that it is catching something
}
<div id="maincontent">
<div id="pictures">
<img src="img/mountain.jpg">
</div>
<div id="paragraph">
<p>
</p>
<button onclick="nextImage()">Switch Images</button>
</div>
</div>
Smart猫小萌
湖上湖
相关分类