我已经有了这个需要更改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>