gpt4 book ai didi

javascript - 切换图像上的 src 属性

转载 作者:行者123 更新时间:2023-11-28 11:08:48 25 4
gpt4 key购买 nike

有没有办法在单击 anchor 时在两个值之间切换图像的 src 属性?

像这样:

$('a#some-anchor').click(function() {
// code here that toggles between two image src's e.g. "images/some-image1.jpg" and "images/some-image2.jpg"
});

最佳答案

$("img").bind("click", function() {
var src = ($(this).attr("src") === "img1_on.jpg")
? "img2_on.jpg"
: "img1_on.jpg";
$(this).attr("src", src);
});

摘自这里:

Changing the image source using jQuery

关于javascript - 切换图像上的 src 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4678857/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com