$('ul').on('mouseover','li',function()
{
var $this=$(this);
$('li').removeClass('big');
$this.addClass('big');
})
简化了代码
很好,没有问题的