gpt4 book ai didi

javascript - 单击父对象而不是其子对象时关闭 DIV

转载 作者:行者123 更新时间:2023-11-30 17:21:51 27 4
gpt4 key购买 nike

http://liveweave.com/lJu0ng

当文本框获得焦点/鼠标按下/触摸启动时,您可以更改元素字体系列。通过键入或单击聚焦时可见的气泡中的字体按钮。

我想在单击工具箱时关闭气泡,但在单击气泡(不是气泡的子项)时关闭气泡。

我该如何着手解决这个问题?

最佳答案

开始吧,使用您的最新代码:

http://liveweave.com/mvxPkl

我在字体标签中添加了 class="font"并检查 e.target 没有类 "font"

 $(".toolbox").on('mousedown touchstart', function(e) {
if (!$(e.target).hasClass('font')){
$(this).children().not($("input[type=text]")).hide();
}

});

关于javascript - 单击父对象而不是其子对象时关闭 DIV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25027278/

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