使用按钮显示/隐藏图像可以通过以下步骤实现:
<img>
标签来插入图像,并使用<button>
标签创建按钮。<!DOCTYPE html>
<html>
<head>
<title>Show/Hide Image</title>
<style>
#image {
display: none; /* 初始状态隐藏图像 */
}
</style>
</head>
<body>
<button onclick="toggleImage()">显示/隐藏图像</button>
<img id="image" src="image.jpg" alt="图像">
<script src="script.js"></script>
</body>
</html>
getElementById()
方法获取图像元素,并使用style.display
属性来控制图像的显示或隐藏。function toggleImage() {
var image = document.getElementById("image");
if (image.style.display === "none") {
image.style.display = "block"; // 显示图像
} else {
image.style.display = "none"; // 隐藏图像
}
}
<style>
标签中定义了图像的初始状态为隐藏。这样,当用户点击按钮时,JavaScript函数将被调用,根据图像的当前显示状态来切换图像的显示或隐藏。
领取专属 10元无门槛券
手把手带您无忧上云