<!DOCTYPE html>
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="http://www.imooc.com/data/jquery-1.8.2.min.js" type="text/javascript"></script>
</head>
<body>
<span class="tip"></span>
<ul>
<li>
水果
</li>
<li>
蔬菜
</li>
<li>
零食
</li>
<li>
饰品
</li>
</ul>
<script type="text/javascript">
(function($){
$.extend({
"li-color": function(){
$("li").bind("mouseover",function(){
$(this).css("background","green");
})
$("li").bind("mouseout",function(){
$(this).css("background","white");
})
return $(this);
}
}) ;
})(jQuery);
$(function(){
$.li-color();
});
</script>
</body>
</html>