- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试建立一个基于“电子表格”的网站,该网站将用于计算一组“员工”使用的时间/劳动力。我能够弄清楚如何计算其中一名“员工”的工作时间,但我无法弄清楚如何对其他“员工”使用相同的公式/函数。 This jsfiddle到目前为止我已经能够整理出基本结构。
<form>
<table id="actual" cellspacing="0px">
<tr>
<th>Name</th>
<th>Start Time</th>
<th>End Time</th>
<th>
Total Time
<br/> Worked
</th>
</tr>
<tr>
<th>Greg Weiland</th>
<td>
<input class="Time1" type="time">
</td>
<td>
<input class="Time2" type="time">
</td>
<td>
<input class="Hours">
</td>
</tr>
<tr>
<th>Alicia Hawly</th>
<td>
<input class="Time1" type="time">
</td>
<td>
<input class="Time2" type="time">
</td>
<td>
<input class="Hours">
</td>
</tr>
<tr>
<th>Charlen Connoly</th>
<td>
<input type="time">
</td>
<td>
<input type="time">
</td>
<td> </td>
</tr>
<tr>
<th>Dakota Giles</th>
<td>
<input type="time">
</td>
<td>
<input type="time">
</td>
<td> </td>
</tr>
<tr>
<th>Donovan Cole</th>
<td>
<input type="time">
</td>
<td>
<input type="time">
</td>
<td> </td>
</tr>
<tr>
<th>Robert Hill</th>
<td>
<input type="time">
</td>
<td>
<input type="time">
</td>
<td> </td>
</tr>
<tr>
<th>Douglas Spirs</th>
<td>
$(function() {
function calculate() {
var time1 = $(".Time1").val().split(':'),
time2 = $(".Time2").val().split(':');
var hours1 = parseInt(time1[0], 10),
hours2 = parseInt(time2[0], 10),
mins1 = parseInt(time1[1], 10),
mins2 = parseInt(time2[1], 10);
var hours = hours2 - hours1,
mins = 0;
if (hours < 0) hours = 24 + hours;
if (mins2 >= mins1) {
mins = mins2 - mins1;
} else {
mins = (mins2 + 60) - mins1;
hours--;
}
mins = mins / 60; // take percentage in 60
hours += mins;
hours = hours.toFixed(2);
$(".Hours").val(hours);
}
$(".Time1,.Time2").change(calculate);
calculate();
});
任何帮助将不胜感激,因为我不确定如何让其他员工正确计算时间。
请注意,我不关心计算是通过单个按钮完成还是通过更改“单元格”的值来完成。
最佳答案
这是一种不同的方法,可以用更少的代码完成您所要求的任务。此外,我还使用包含所有员工姓名的数组来缩短编写所需的 HTML。这使得如果您需要添加或删除员工,就会容易得多 - 您所做的就是将其直接删除或添加到列表中,然后 foreach 循环会为您创建表行。这使用与上面的方法类似的 .each() ,但利用您用来进行数学计算的时间类型输入。
fiddle :https://jsfiddle.net/arcxdff2/10/
JS
$(function() {
var employees = ['Greg Weiland', 'Alicia Hawly', 'Charlen Connoly', 'Dakota Giles', 'Donovan Cole', 'Robert Hill', 'Douglas Spirs', 'Casey Green', 'Jared Peterson', 'Elizabeth P', 'Carl Mark', 'Carma J.', 'Ike J.', 'Elias H.'];
//This for each loop will write the employee names in the array above into their own rows
for (i = 0; i < employees.length; i++) {
$('#footer').after('<tr class="rowEmployee"><th>' + employees[i] +
'</th><td><input class="Time1" type="time"></td>' +
'<td><input class="Time2" type="time">' +
'</td><td><input class="Hours"></td></tr>')
}
$('#btnSubmit').on('click', function() {
$('.rowEmployee').each(function() {
var time1 = $('.Time1', this).val().split(':');
var time2 = $('.Time2', this).val().split(':');
//The following calculations turn minutes into a fraction to make the math easier
var hoursWorked1 = parseInt(time1[0]) + ((parseInt(time1[1]) == 0) ? 0 : (parseInt(time1[1]) / 60));
var hoursWorked2 = parseInt(time2[0]) + ((parseInt(time2[1]) == 0) ? 0 : (parseInt(time2[1]) / 60));
//Here is your difference in hours calculation below
var diff = hoursWorked2 - hoursWorked1;
//Finally, write the total hours worked to the textbox, rounding to nearest hundredth
$('.Hours', this).val(Math.round(diff*100)/100);
});
});
});
HTML
<table id="actual" cellspacing="0px">
<tr id='header'>
<th>Name</th>
<th>Start Time</th>
<th>End Time</th>
<th>
Total Time
<br/> Worked
</th>
</tr>
<!-- Add the ID of footer so the JS knows where to append the rows containing employee names -->
<tr id="footer">
<td colspan="4"> </td>
</tr>
<tr>
<td colspan="4" align="center">
<button id='btnSubmit'>Submit</button>
</td>
</tr>
</table>
关于javascript - 使用一个 jquery 函数计算多个输入字段的工作时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36506142/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!