上述加粗的是经常会用到的事件类型
以 eventType=MouseEvents ,触发事件为 click 为例:
改成下面的试试
<script type="text/javascript">$(document).ready(function()
{
$(".header").animate({ width: 'hide', display: 'none' })
$("ul.menu").animate({ width: 'show' ,height:'show' ,display:'block',})
$(".header").animate({ width: 'show', display: 'block' })
$("ul.menu").animate({ width: 'hide' ,height:'hide',display:'none',})
})
</script>