首頁 >web前端 >js教程 >jquery foreach使用範例_jquery

jquery foreach使用範例_jquery

WBOY
WBOY原創
2016-05-16 17:22:431476瀏覽
複製程式碼 程式碼如下:










$("input").each(function(index){ //取得整個頁面的input值

$("input:text").each(function(index){
alert(index);//循環的下標值,從0開始
alert(this.value); alert($( this).attr("type")); //自帶屬性可以用this(Dom)直接取值
alert($(this).attr("vili")); //自訂屬性需要用attr(Jquery)取值
//if($(this).attr("vili")=="true"&&){
  
//}
});

複製程式碼 程式碼如下:

$.ajax({url : 'schedule/getMonthRecordLs.action',
dataType: 'json',
success: function(data) {
var events = [];
$(data) .each(function(i,val) {
events.push({
id: val.sc_id,
title: val.sc_planemp,
start: new Date(val.sc_date),
color: val.sc_classes=='1'?'':'#993300'
});
});
callback(events);
}
});

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn