下面提一下jquery的each方法的幾種常用的用法
js**
var arr = [ "one", "two", "three", "four"];
$.each(arr, function());
//上面這個each輸出的結果分別為:one,two,three,four
var arr1 = [[1, 4, 3], [4, 6, 6], [7, 20, 9]]
$.each(arr1, function(i, item));
//其實arr1為乙個二維陣列,item相當於取每乙個一維陣列,
//item[0]相對於取每乙個一維陣列裡的第乙個值
//所以上面這個each輸出分別為:1 4 7
var obj = ;
$.each(obj, function(key, val) );
//這個each就有更厲害了,能迴圈每乙個屬性
//輸出結果為:1 2 3 4
簡單例項:
$(document).ready(function());
});
});
for迴圈裡面的do while迴圈
public class text20191127 while i 6 system.out.println sum 對於此道for迴圈中的do whlie迴圈結果如下 for迴圈中的i值1 do while迴圈中的i值2 do中sum的值 0 do while迴圈中的i值3 do中sum的值 3 ...
jquery裡面的 this 和this
當你用的是jquery時,就用 this 如果是js,就用this this html this html bam 這個裡的html 是jquery方法,用 this html 當然,js裡也有相似方法innerhtml,如果用innerhtml,就要這樣寫了,這裡的reset是js方法,所以同上得...
jquery裡面的 this 和this的區別
當你用的是jquery時,就用 this 如果是js,就用this。jquery this html this html bam js this innerhtml this reset 這個裡的html 是jquery方法,用 this html 當然,js裡也有相似方法innerhtml,如果用...