gpt4 book ai didi

Jquery 和 :active selector

转载 作者:太空宇宙 更新时间:2023-11-04 14:24:26 24 4
gpt4 key购买 nike

这是我的代码:

$('#ss a:active').parent().addClass('ss-active');

我想您可以从我的代码中看出我想做什么,但它不起作用,我该怎么做?而且我还希望当用户从按钮上移开鼠标回到正常状态时,我的意思是:“用户从按钮上移开鼠标”是用户只能按住按钮一段时间,然后它应该看到 :active陈述。

我不能用 css 做到这一点,因为我需要那个 <a> 的父级.

//这就是我是如何让它工作的!

    $('#solicita a').mousedown(function() {
if($(this).parent().hasClass('solicita-hover'))
{
$(this).parent().removeClass('solicita-hover');
$(this).parent().addClass('solicita-active');
}
}).mouseleave(function() {
$(this).parent().removeClass('solicita-active');
});

最佳答案

尝试使用 mousedown() 事件:

$('#ss a').mousedown(function() {
$(this).parent().addClass('ss-active');
}).mouseup(function() {
$(this).parent().removeClass('ss-active');
});

关于Jquery 和 :active selector,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3302075/

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