jquery常用功能函式

2021-08-28 10:48:05 字數 2223 閱讀 8600

1.運算元組和物件

主要包括元素的遍歷,篩選,合併等

1)遍歷each()

格式:$.each(object,fn)

object是要遍歷的物件。fn是遍歷所有物件所要執行的函式,可以接受兩個引數:

1.陣列物件的屬性或者元素序號

2.屬性或者元素的值

例如:

html**:

輸出每個列表項的值
jquery**:

$("button").click(function())
2)grep()方法用於陣列元素的過濾篩選

語法:grep(array,fn,invert)

array:過濾陣列

fn:過濾函式

invert:設定true函式取反,即滿足條件被剔除

例如:

var array=[1,2,3,4,5,6,7];

var result= $.grep(array,function(value))

document.write("原陣列:"+array.join()+"

"); document.write("大於2的結果:"+result.join());

3)map()用於把每個元素通過函式傳遞到當前匹配的集合中

語法:$.map(array,fn)

array:需要轉化的目標陣列

fn:對陣列中某一項都要執行轉化函式(元素的值,元素的引數)

例如:

var array=["as","a","dog"];

var result= $.map(array,function(value))

document.write("原陣列:"+array.join()+"

"); document.write("大寫陣列:"+result.join());

4)$.inarray()實現了陣列的搜尋功能

語法:$.inarray(value,array)

其中value是需要查詢的物件,而array是陣列本身,查詢到目標元素,就返回第乙個元素所在位置,否則返回-1

例如:

var b=["this","is",'a',"dog"];

document.write($.inarray("are",b));

document.write($.inarray("is",b))

4.操作字串

trim():去前後字串空格

substr():在字串中抽取指定下標的字串片段

replace(m,n):字串的替換

例如:

var str="                 此生此夜不長好,明月明年何處看    ";

$("#original").html("原始字串:"+str);

$("#trimmed").html("去掉首尾空格:"+ $.trim(str))

var str="此生此夜不長好,明月明年何處看";

document.write("原始內容:"+str+"

") document.write("擷取字串:"+str.substr(0,9))

var str="此生此夜不長好,明月明年何處看";

document.write("原始內容:"+str+"

") document.write("replace後的字串:"+str.replace(/明月/g,"**"))

5.序列化操作

param(object):將表單元素陣列或者物件序列化,返回值為string

陣列按照name,value進行序列化,物件按照key,value進行序列化。

例如:

personobj=new object();

personobj.fristname="bill";

personobj.lastname="gates";

personobj.age="60";

$("button").click(function())

Jquery常用功能總結

id css display block function input id online click function 設定不可以使用 id attr disabled disabled 可以使用 id removeattr disabled id1,id2 click function 使用pr...

Python常用功能函式

1.字串反轉 字串反轉 string 字串變數 staticmethod def str reverse string result string 1 return result 2.刪除首尾指定的字元 刪除首尾指定的字元 string 字串變數 rm 要刪除的字元,預設為空格 staticmeth...

SAP常用功能

1 sap外觀 幫助圖示右側的按鈕是customizing of local layout 定製本地布局 按鈕,可以用它來變更sap gui顯示介面的風格。2 sap導航 1 在sap print list視窗裡,如果不想在保持期內儲存系統假離線請求,在print screen list 列印頁面列...