当前位置: 移动技术网 > IT编程>开发语言>JavaScript > jquery foreach使用示例

jquery foreach使用示例

2018年04月02日  | 移动技术网IT编程  | 我要评论
代码如下: <form id="input_iForm" action="${pageContext.request.contextPat

代码如下:


<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);
}
});

如您对本文有疑问或者有任何想说的,请 点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网