如何将此脚本更改为OnMouseOver?

New*_*ewB 0 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>
Run Code Online (Sandbox Code Playgroud)

geo*_*eon 5

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

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