<%form_for (@checkin) do|f|%>
<%=f.hidden_field :event_id, :value =>@event.id%>
<%=f.hidden_field :student_class_id, :value =>@student_class.id%>
<%=f.hidden_field :course_id, :value =>@course.id%>
<table style="border:solid 1px;border-color:#FFE66F">
<tr class="even"><td><b>学生名称</b></td><td><b>迟到</b></td><td><b>早退</b></td><td><b>旷课</b></td><td><b>跨班上</b></td></tr>
<%if @team&&@team!=""%>
<!--<%=f.hidden_field :team_id, :value => @team.id%>-->
<%for team in @teams%>
<%if team.stu_reg_infs.size>0%>
<%sameevent=Event.find(:last,:conditions=>"team_id=#{team.id} and course_order=#{@event.course_order}")%>
<tr class="even"><td colspan="1"><font color="#FF0000"><%=team.name%></font></td><td colspan="4"><font color="#FF0000"><%=sameevent.starttime.strftime("%Y年%m月%d日%H时")%></font></td></tr>
<%end%>
<%for stu_reg_inf in team.stu_reg_infs%>
<tr class="even"><td><%=stu_reg_inf.name%></td><td><div><div style="float:left;"><input id="checkin_late_stu_reg_inf_<%=stu_reg_inf.id%>_" name="checkin[late_stu_reg_inf_<%=stu_reg_inf.id%>][]" type="checkbox" value="<%=stu_reg_inf.id%>" onclick="buttonDisable('<%=stu_reg_inf.id%>')"/>迟到</div><div id="latediv<%=stu_reg_inf.id%>" name="latediv<%=stu_reg_inf.id%>" style="display:none;"><input name="late<%=stu_reg_inf.id%>" type="text" class="late" id="late<%=stu_reg_inf.id%>" style="width:20px;"/>分钟</div></div></td>
<td><div><div style="float:left;"><input id="checkin_leaver_stu_reg_inf_<%=stu_reg_inf.id%>_" name="checkin[leaver_stu_reg_inf_<%=stu_reg_inf.id%>][]" type="checkbox" value="<%=stu_reg_inf.id%>" onclick="leaverbuttonDisable('<%=stu_reg_inf.id%>')"/>早退</div><div id="leaverdiv<%=stu_reg_inf.id%>" name="leaverdiv<%=stu_reg_inf.id%>" style="display:none;"><input name="leaver<%=stu_reg_inf.id%>" type="text" class="leaver" id="leaver<%=stu_reg_inf.id%>" style="width:20px;"/>分钟</div></div></td>
<td><div><div style="float:left;"><input id="checkin_truant_stu_reg_inf_<%=stu_reg_inf.id%>_" name="checkin[truant_stu_reg_inf_<%=stu_reg_inf.id%>][]" type="checkbox" value="<%=stu_reg_inf.id%>" onclick="truantbuttonDisable('<%=stu_reg_inf.id%>')"/>旷课</div><div id="truantdiv<%=stu_reg_inf.id%>" name="truantdiv<%=stu_reg_inf.id%>" style="display:none;"><input name="truant<%=stu_reg_inf.id%>" type="text" class="truant" id="truant<%=stu_reg_inf.id%>" style="width:20px;"/>记录</div></div></td>
<td><div><div style="float:left;"><input id="checkin_kuaban_stu_reg_inf_<%=stu_reg_inf.id%>_" name="checkin[kuaban_stu_reg_inf_<%=stu_reg_inf.id%>][]" type="checkbox" value="<%=stu_reg_inf.id%>" onclick="kuabanbuttonDisable('<%=stu_reg_inf.id%>')"/>跨班</div><div id="kuabandiv<%=stu_reg_inf.id%>" name="kuabandiv<%=stu_reg_inf.id%>" style="display:none;"><input name="kuaban<%=stu_reg_inf.id%>" type="text" class="kuaban" id="kuaban<%=stu_reg_inf.id%>" style="width:20px;"/>记录</div></div></td>
</tr>
<%end%>
<%end%>
courses_stu_reg_infs=CoursesStuRegInf.find(:all,:conditions=>"student_class_id=#{params[:checkin][:student_class_id]} and course_id=#{params[:checkin][:course_id]} and (situation='已选' or situation='通过' or situation='不过')")
stu_reg_infs=[]
for courses_stu_reg_inf in courses_stu_reg_infs
stu_reg_infs<<courses_stu_reg_inf.stu_reg_inf
end
for stu_reg_inf in stu_reg_infs
if params["checkin"]["late_stu_reg_inf_#{stu_reg_inf.id}"] || params["checkin"]["leaver_stu_reg_inf_#{stu_reg_inf.id}"] || params["checkin"]["truant_stu_reg_inf_#{stu_reg_inf.id}"]|| params["checkin"]["kuaban_stu_reg_inf_#{stu_reg_inf.id}"]
checkin = Checkin.new
checkin.stu_reg_inf_id=stu_reg_inf.id
checkin.event_id=params[:checkin][:event_id]
checkin.student_class_id=params[:checkin][:student_class_id]
checkin.course_id=params[:checkin][:course_id]
if params["checkin"]["late_stu_reg_inf_#{stu_reg_inf.id}"]
checkin.late="迟到"
checkin.latetime=params["late#{stu_reg_inf.id}"]
end
if params["checkin"]["leaver_stu_reg_inf_#{stu_reg_inf.id}"]
checkin.leaver="早退"
checkin.leavertime=params["leaver#{stu_reg_inf.id}"]
end
if params["checkin"]["truant_stu_reg_inf_#{stu_reg_inf.id}"]
checkin.truant="旷课"
checkin.truantrecord=params["truant#{stu_reg_inf.id}"]
end
if params["checkin"]["kuaban_stu_reg_inf_#{stu_reg_inf.id}"]
checkin.kuaban="跨班"
checkin.kuabanrecord=params["kuaban#{stu_reg_inf.id}"]
end
checkin.save
end
end
redirect_to :action =>"show",:id=>params[:checkin][:event_id]
分享到:
相关推荐
根据给定文件的信息,本文将深入探讨如何在Web应用中实现多表单的同时提交功能,以及如何使用JavaScript来增强下拉框的可编辑性(包括删除、修改与新增选项),并实现聚焦等交互功能。 ### 多表单同时提交 在实际...
通过form.on("submit(formConfig)",function(data){...})的调用,开发者可以指定当具有特定lay-filter属性的表单触发提交事件时,执行相应的函数。在这个函数内部,返回false可以阻止表单的提交,即阻止表单数据被...
如下所示: form表单ID:postform 设置表单请求url document.postform.action = SaveReturnInfo...以上就是小编为大家带来的js 提交form表单和设置form表单请求路径的实现方法全部内容了,希望大家多多支持软件开发网~
在Form表单提交中,POST方法会将表单数据封装在请求体中发送到服务器,而不是像GET那样将其附加到URL后面。这样可以确保数据的安全性,并且对数据长度没有限制。 二、C#实现POST表单提交的步骤 1. 创建HTTP客户端:...
当用户填写完表单并提交后,常常需要根据提交的数据更新页面上的数据表格,以显示最新的数据。 ###知识点一:Layui模块的使用和依赖 在上述代码片段中,我们看到有这么一段: ```javascript layui.use(['table','...
本文将详细介绍如何使用jQuery.form插件,实现完美的表单异步提交。 首先,我们需要了解jQuery.form插件的基本用法。在开始之前,请确保已经在项目中引入了jQuery库以及jQuery.form插件。通常,这两个文件可以通过...
本文实例讲述了JS提交form表单。分享给大家供大家参考,具体如下: 一、javascript 页面加裁时自动提交表单: Form表单: <form method="post" id="myform" action="a.php"> <input type="submit" value=...
默认情况下,表单提交会引发页面重定向,使用`<form>`的`action`属性指定处理表单数据的URL,`method`属性定义请求类型(GET或POST)。 2. **阻止默认行为(Preventing Default Behavior)**:为了阻止表单提交导致...
AjaxForm是jQuery Form Plugin的一个功能,用于实现异步表单提交,特别是处理包含图片在内的复杂数据。本文将深入探讨如何使用ajaxForm进行异步表单提交。 首先,让我们了解什么是Ajax。AJAX(Asynchronous ...
在PHP开发中,有时我们需要模拟用户通过HTML表单提交数据,包括文件和图片。`cURL`库提供了一个强大的功能,允许我们实现这样的任务。在本文中,我们将深入探讨如何使用PHP的cURL库来模仿form表单提交,特别是提交...
但是,如果希望在同一个表单中实现多个功能,则需要借助客户端脚本来动态改变`action`属性的值,从而控制表单提交的目标地址。 #### HTML结构 首先,我们需要构建一个包含多个按钮的表单: ```html <form action=...
js实现form表单自动回显功能
在form表单提交中,使用button来间接完成submit的提交更为灵活。下面是实现方法: 使用button按钮实现submit提交,需要在button标签中的使用onclick方法,然后在JavaScript中实现具体,代码如下: <head> ...
- **GET与POST方法**:`method`属性决定提交方式,GET将数据附加到URL,POST则将数据隐藏在请求体中。 - **服务器端处理**:表单数据提交后,服务器端(如PHP、Python、Node.js等)需解析并处理这些数据。 8. **...
本篇文章将深入探讨如何利用jQuery从JSON对象转换为form提交数据。 首先,JSON(JavaScript Object Notation)是一种轻量级的数据交换格式,它基于JavaScript的一个子集,易于人阅读和编写,同时也易于机器解析和...
在微信小程序中,`<form>`组件用于创建一个表单容器,它允许用户输入数据并通过提交操作将数据传递到服务器或者执行相应的业务逻辑。`<form>`组件提供了自动封装数据、校验数据以及调用后台接口的能力,极大地简化了...
实际就是提交数据。 get:将表单中数据的按照variable=value的形式,添加到action所指向的URL后面,并且两者使用“?”连接,而各个变量之间使用“&”连接;一般用来从服务器得到数据。 3,默认是get,所以一般我们都要...
本篇将详细介绍如何使用Servlet来接收form表单提交的数据,并将其在网页上呈现。 一、Servlet生命周期 Servlet具有三个主要阶段:加载、初始化和服务。当客户端首次请求Servlet时,服务器会加载并初始化Servlet,...
- **解析请求参数**:由于EXT默认是以POST方式提交数据,所以在Action中需要确保能够正确解析这些参数。 ```java @Override public void validate() { if (username == null || username.trim().equals("")) { ...