0

我有一个如下所示的鼠标悬停

onmouseover='$(this).css(\"cursor\",\"pointer\");infoCardIn("uid")'

我想在 jquery 函数中将其更改为如下所示

onmouseover='$(this).css(\"cursor\",\"pointer\");infoCardIn("uid2")'

我似乎无法正确使用语法。帮助?

4

1 回答 1

1
$("#myItem").hover(function() { // Mouse in method
    $(this).css("cursor","pointer");
    infoCardIn("uid2");
}, function() { // Mouse out method
    $(this).css("cursor","");
});

有关详细信息,请参阅http://api.jquery.com/hover/

希望这可以帮助!

于 2012-09-15T00:00:33.317 回答