📅  最后修改于: 2023-12-03 14:51:58.223000             🧑  作者: Mango
jQuery 是一种非常流行的 JavaScript 库,用于简化交互式 Web 应用程序的开发。在本文中,我们将介绍如何使用 jQuery 在按钮单击时隐藏或显示图像。
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<img id="myImage" src="path_to_image">
<button id="myButton">Hide/Show Image</button>
$(document).ready(function(){
$("#myButton").click(function(){
$("#myImage").toggle();
});
});
这段代码使用 jQuery 的 toggle() 函数来隐藏或显示图像,具体取决于图像当前的可见性。
<script>
// 将上述代码粘贴到这里
</script>
以下是完整的示例代码:
<!DOCTYPE html>
<html>
<head>
<title>Hide/Show Image</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<img id="myImage" src="path_to_image">
<button id="myButton">Hide/Show Image</button>
<script>
$(document).ready(function(){
$("#myButton").click(function(){
$("#myImage").toggle();
});
});
</script>
</body>
</html>
现在,您已经知道如何使用 jQuery 在按钮单击时隐藏或显示图像了。使用 jQuery,您可以轻松地对 Web 页面中的元素进行操作,从而提高用户体验。