我有这个脚本,需要更改为OnMouseOver,目前它的功能,当你点击,但我需要它的功能,当鼠标光标经过一个分区。任何帮助都是非常感谢的。
<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>发布于 2010-10-29 00:52:00
它是mouseOver (全部小写),不是mouseover。
http://api.jquery.com/mouseover/
https://stackoverflow.com/questions/4045142
复制相似问题