2014年6月25日 星期三

jQuery foreach example

var arr = [ "one", "two", "three", "four", "five" ];
jQuery.each(arr, function(index, value) {
       console.log(this);
       return (this != "three"); // will stop running after "three"
});




References :
5 jQuery.each() Function Examples

沒有留言:

張貼留言