DIV CSS 佈局教程網

jquery foreach使用示例
編輯:JQuery特效代碼     
. 代碼如下:
<form id="input_iForm" action="${pageContext.request.contextPath}/transfer/input_salary.shtml">
<input type="text" class="input_w150" vili="true" onkeyup="formatBankNo(this)"/>

<input type="text" class="input_w150" vili="true" onkeyup="formatBankNo(this)"/>

<input type="text" class="input_w150" vili="true" onkeyup="formatBankNo(this)"/>

</form>

$("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: '<%=basePath%>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);
}
});
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved