模拟:使用jQuery激活

时间:2010-06-21 07:57:18

标签: jquery internet-explorer

悬停时,我这样做:

$('.btn').hover(function (event) {
   $(this).toggleClass('hover');
});

是否有类似的解决方法:主动?该死的IE6需要它。

2 个答案:

答案 0 :(得分:3)

您可以使用jQuery mousedown()来模拟它。

请看这里的例子:

http://api.jquery.com/mousedown/#example-0

$('.btn').mousedown(function(){
    $(this).addClass('active');
}).mouseup(function(){
    $(this).removeClass('active');
});

答案 1 :(得分:1)

这里有一些信息:

http://csscreator.com/node/31976