1.类开发:
(function( $ ){
$.fn.myPlugin = function() {
// 开始吧!
};
})( jQuery );fn相当于prototype
2.对象开发:
$.myPlugin = function() {
})( jQuery );