gpt4 book ai didi

JavaScript 便笺

转载 作者:行者123 更新时间:2023-12-01 02:01:15 26 4
gpt4 key购买 nike

为了好玩,我用 javascript 做了一些便签。

当屏幕上有多个便笺时,我希望将选定的便笺向前显示。 IE。将 z-index 提高到高于其他便签。目前我正在使用 :hover 通过 CSS 来完成此操作,这有点烦人。我想用 javascript/jquery 来做。我尝试使用 focus() 和 Blur() 进行 addClass/removeClass

这就是我目前所拥有的

$('.darkYellow').click(function() {
$(this).focus(function() {
$(this).addClass("index");
});
});

$('.darkYellow').blur(function() {
$(this).removeClass("index");
});

更新并感谢 Christoph 的帮助 http://jsfiddle.net/EnigmaMaster/aQMhk/6/

最佳答案

类选择器以 . 字符开头,类名则不然(好吧,它们可以,但那样就很疯狂)。

$(this).addClass("index")

关于JavaScript 便笺,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10229294/

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