gpt4 book ai didi

jquery - 使用 jquery toggle 改变按钮图标

转载 作者:太空宇宙 更新时间:2023-11-03 23:19:32 25 4
gpt4 key购买 nike

我正在使用这样的 jquery 切换命令:

http://jsfiddle.net/hbz9oa34/

$(".searchbtn").click(function () {
$("#search").toggle();
});

切换打开菜单后,将搜索图标更改为关闭图标的最佳方法是什么?

最佳答案

您可以使用 CSS 代替 img 标签,使其更通用。

CSS:

.icon-search {
background: url("/img/search.svg");
width: 30px;
height: 30px;

}

// update the width and height as required.

.icon-close {
background: url("/img/close.svg");
width: 30px;
height: 30px;
}

JS:

$(".searchbtn").click(function () {
$(this).find("i").toggleClass("icon-search icon-close")
});

HTML:

  <a href="#" class="searchbtn"><i class="icon-search"></i></a>

关于jquery - 使用 jquery toggle 改变按钮图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29280967/

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