- <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:text").each(function(index){
- alert(index);
- alert(this.value); alert($(this).attr("type"));
- alert($(this).attr("vili"));
-
-
-
- });
- $.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);
- }
- });
posted on
2013-08-17 22:51
风言枫语
阅读( 331)
评论()
收藏
举报
|