Jquery的扩展

  

//扩展格式 $.fn.extend({ name:function(){ //方法体 return this ; } }); //调用方法 $(obj).name();

 

 例子:在显示一个隐藏div前,希望能够让其居中。

  //div显示时让其居中 $.fn.extend({ centerShow:function(){ this.css("left","50%"); this.css("top","auto"); return this.show(); } }); $("#id").centerShow();

你可能感兴趣的:(jquery,function,扩展,div)