我正在尝试使此代码生成随机数量的 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>