如何将此脚本更改为OnMouseOver?

时间:2010-10-28 16:42:43

标签: javascript jquery

我已经有了这个需要更改OnMouseOver的脚本,目前它在你点击时起作用但我需要它在鼠标光标越过div时起作用。非常感谢任何帮助。

<script> 

// execute your scripts when the DOM is ready. this is a good habit
$(function() {

    // assign a click event to the exposed element, using normal jQuery coding
    $("#menuwrapper").mouseOver(function() {

        // perform exposing for the clicked element
        $(this).expose();

    });
});
</script>

1 个答案:

答案 0 :(得分:5)

它是鼠标悬停(全部小写),而不是mouseOver。

http://api.jquery.com/mouseover/