$("input").each(function(index){ / /전체 가져오기 페이지의 입력 값
$("input:text").each(function(index){
alert(index);//루프의 아래 첨자 값, 시작 from 0
alert( this.value); Alert($(this).attr("type")); //자체 속성을 사용하면 this(Dom)을 사용하여 값을 직접 가져올 수 있습니다
alert ($(this).attr("vili") ); //사용자 정의 속성은 값을 얻으려면 attr(Jquery)를 사용해야 합니다
//if($(this).attr("vili")==" true"&&){
//}
});
$.ajax({
url: '<%=basePath%>schedule/getMonthRecordLs.action',
dataType: 'json ',
성공: function(data) {
var events = [];
$(data).each(function(i,val) {
events.push({
id : val.sc_id,
제목: val.sc_planemp,
시작: 새 날짜(val.sc_date),
색상: val.sc_classes=='1'?'':'#993300'
});
});
콜백(이벤트)
}
});