概述:扩展 jQuery 元素集来提供新的方法(通常用来制作插件)
例子:为jquery添加两个方法:
$.fn.extend({ toRed:function (){ $(this).css("border","1px solid red"); }, toGreen:function (){ $(this).css("border","1px solid green"); } });
html:
<ul> <li></li> <li></li> </ul>
调用新加的方法:
$(function (){ $("li").toGreen(); });
效果: