如何使用 jQuery 更改图像源
答案:使用jQuery attr()
方法
您可以使用 attr()
方法更改 jQuery 中的图像源(即
标签的 <img>
src
属性)。 以下示例将在您单击图像时更改图像 src
。
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery 在点击时更改图像源</title>
<style>
.card{
margin: 30px;
}
</style>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$("img").click(function(){
/* 更改图像的 src 属性 */
$(this).attr("src", "images/card-front.jpg");
});
});
</script>
</head>
<body>
<div class="card">
<img src="images/card-back.jpg" alt="Poker Card">
</div>
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: