-1

我有以下代码,这会导致以下错误。如何在悬停时正确使用 JQuery?

编码:

// Hover on the view filters
$('body').on('hover', '#viewfilter', function(event)
{
    $('#filterblock').show();
},
function(event)
{
    $('#filterblock').hide();
});

没有错误,但显示部分似乎没有触发。

4

2 回答 2

1

您的代码看起来不错,您可以看到使用您的代码修复的演示Joe Buckle。

您的错误必须在代码的其他部分。

我唯一的建议是你使用它mouseenter,你可以在这里阅读它。

于 2013-08-06T20:17:59.410 回答
0

You've tried to add the eventListener to multiple "view filters" using '#viewfilter'.

This isn't possible because # is the selector for ID's. You can use a className and then call it using '.viewfilters'. This is probably the issue, but without more code it's impossible to be sure.

于 2013-08-06T19:57:44.237 回答