我正在学习 html5 和 javascript ,
我想在单击按钮时随机更改图像,我在本地存储了三张图像,想要设置这些图像,并且还想在数据库中存储哪些图像设置了多少次的数据。
任何人都知道如何做到这一点,在此先感谢。
想要将一些随机数传递给函数 changeImage(randomNumber) 并根据数字想要更改图像
<!DOCTYPE html>
<html>
<head>
<h1>Click on Image to Change Image </h1>
<script>
function changeImage(){
var image = document.getElementById("image");
switch(1){
case 1 :
image.src = "tulips.JPG";
break;
case 2 :
image.src = "life.JPG";
break;
case 3:
image.src = "Desert.JPG";
break;
document.getElememtById("image_change_button").innerHTML = Math.random();
}
}
</script>
</head>
<body>
<div>
<img id = "image" src = "life.JPG" width = "480" height = "100" ></img>
</div>
<div>
<button id = "image_change_button" onClick = "changeImage()" width = " 100" height = "100">OnClick</button>
</div>
</body>
</html>