jquery foreach使用示例 程序员文章站 2022-07-08 07:56:47 代码如下: 代码如下: <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); } }); 上一篇: python中hashlib模块的使用介绍 下一篇: 没有冰箱如何保存荔枝 推荐阅读 微信小程序使用map组件实现解析经纬度功能示例 微信小程序使用map组件实现路线规划功能示例 微信小程序使用map组件实现检索(定位位置)周边的POI功能示例 iOS App使用设计模式中的模板方法模式开发的示例 使用html5新特性轻松监听任何App自带返回键的示例 python的三目运算符和not in运算符使用示例 使用HTML5和CSS3制作一个模态框的示例 Python使用sax模块解析XML文件示例 jQuery插件FusionCharts绘制的2D帕累托图效果示例【附demo源码】 nodejs模块nodemailer基本使用-邮件发送示例(支持附件)