js jquery擴充套件

2021-06-29 14:48:18 字數 1171 閱讀 9920

js擴充套件:

1.string擴充套件:

string.portotype.resetblank

=functions(){}

str.resetblank ();

2.數字擴充套件:

number.portotype.lenwithzero=function(){}

3.數字擴充套件:

array.portotype.min2max=function(){}

總結:

型別.prototype.擴充套件方法名  

jquery擴充套件:

1.類級別擴充套件:

a.定義全域性函式:

jquery.foo=function(){}         使用:$.foo();

b.使用extend定義:

jquery.extend(})    使用:$.foo1();

c.使用命名空間定義:

jquery.plugin=}       使用:$.plugin.foo2();

2.物件級別擴充套件:

(function($)

})(jquery);

使用:$('#test').foo4();

JS Jquery獲取節點

js 1.通過byclassname,byid,bytagname,name 2.獲取子節點 通過childrens獲取子節點集,會把換行和空格 document.getelementby children 0 通過firstelementchild獲取第乙個子節點 document.getelem...

js jquery新增元素

一 js 1.var el document.createelement a 建立元素 document.body.removechild el 移除子元素 charcodeat var preflag new string fd company id 二 jquery 1.jquery獲取得到的陣...

js jquery 頁面高度問題

1.做瀑布流會使用到的獲取一些高度的方法 jquery scrolltop offset 返回或者配置匹配元素的滾動條的垂直位置 offset指滾動條相對於頂部的偏移 eg var t window scrolltop 獲取window滾動條高度 var dheight document heigh...