gpt4 book ai didi

javascript - 将单击 javascript 事件应用于 JSP 中的 header 而不是使用 标记

转载 作者:行者123 更新时间:2023-11-30 11:36:16 24 4
gpt4 key购买 nike

最佳答案

您想将事件监听器设置在 DOM 中更高的位置。尝试将您的事件监听器从 .icon_toggle_open 移动到 .toggle_header

$(document).on('click', '.toggle_header', function (e) {
stop(e);
var opened = $(this).children('.icon_toggle_open')
if(opened.length > 0){
opened
.removeClass("icon_toggle_open")
.addClass("icon_toggle_close")
.attr("alt","Show")
.attr("title","Show")
.parent().next('.toggle_content').hide();
} else {
$(this)
.children(".icon_toggle_close")
.removeClass("icon_toggle_close")
.addClass("icon_toggle_open")
.attr("alt","Hide")
.attr("title","Hide")
.parent().next('.toggle_content').show();
}
$(window).blur();
});

关于javascript - 将单击 javascript 事件应用于 JSP 中的 header 而不是使用 <a> 标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44299811/

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