- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这张表:表中的数据是mysql查询的结果。每个项目共有8个类别。该表将显示每个项目及其仅具有数量的类别。如果类中的项目数量为 0,则不会显示该类。(此解释仅供您理解。)到目前为止,我所得到的是这样的:
|--------------|------------|----------|------------|
| Item Name | Item Class | Quantity | Total |
|--------------|------------|----------|------------|
| | A | 10 |
| |------------|----------|
| Upper Bearing| B | 5 |
| |------------|----------|------------|
| | C | 4 | 19 |
|--------------|------------|----------|------------|
| | A | 8 |
| Lower Bearing|------------|----------|------------|
| | D | 2 | 10 |
|--------------|------------|----------|------------|
| | B | 2 |
| |------------|----------|
| Vane | D | 11 |
| |------------|----------|------------|
| | E | 2 | 15 |
|--------------|------------|----------|------------|
总计列是每件商品的所有数量的总和。例如,上轴承,总计=数量(A)+数量(B)+数量(C)= 10+5+4= 19。请注意,每个类别的数量是一些计算的结果,而不是直接从数据库中选择。
我想做的是跨行 <td>
总计,以便它像项目名称一样填充整行。
预期输出应如下所示:
|--------------|------------|----------|------------|
| Item Name | Item Class | Quantity | Total |
|--------------|------------|----------|------------|
| | A | 10 | |
| |------------|----------| |
| Upper Bearing| B | 5 | 19 |
| |------------|----------| |
| | C | 4 | |
|--------------|------------|----------|------------|
| | A | 8 | |
| Lower Bearing|------------|----------| 10 |
| | D | 2 | |
|--------------|------------|----------|------------|
| | B | 2 | |
| |------------|----------| |
| Vane | D | 11 | 15 |
| |------------|----------| |
| | E | 2 | |
|--------------|------------|----------|------------|
这是我的代码:
<table>
<tr>
<td>Item Name</td>
<td>Item Class</td>
<td>Item Quantity</td>
<td>Total</td>
</tr>
<?php
$result=mysql_query("SELECT * FROM tblitem INNER JOIN itemloc ON tblitem.itemId=itemloc.itemId INNER JOIN refitemclass ON tblitem.itemClassId=refitemclass.itemClassId");
$classqty=array();
while($row = mysql_fetch_array($result)){
$item=$row['itemNm'];
$class=$row['itemClassName'];
if(!isset($classqty[$item][$class]))
{
$classqty[$item][$class] = 0;
}
if(is_null($row['itemLocCheckOut'])){
$classqty[$item][$class] += $row['itemLocQty'];
}
else{
$classqty[$item][$class] -= $row['itemLocQty'];
}
}
$sum=array();
foreach($classqty as $k1=>$v1){
foreach($v1 as $k2=>$v2){
if(!isset($sum[$k1])){
$sum[$k1] = $v2;
}
else
{
$sum[$k1] += $v2; /*calculation for total*/
}
?>
<tr id="table2">
<td><?php echo $k1;?></td> /*output the item name*/
<td><?php echo $k2;?></td> /*output the item class*/
<td><?php echo $v2;?></td> /*output the quantity for item class*/
<?php
}
?>
<td><?php echo $sum[$k1];?></td> /*output the total*/
</tr>
<?php
}
?>
</table>
这里是为项目名称创建行距的 JavaScript。
<script>
$(document).ready(function() {
var span = 1;
var prevTD = "";
var prevTDVal = "";
$("#table2 td:first-child").each(function() { //for each first td in every tr
var $this = $(this);
if ($this.text() == prevTDVal) { // check value of previous td text
span++;
if (prevTD != "") {
prevTD.attr("rowspan", span); // add attribute to previous td
$this.remove(); // remove current td
}
} else {
prevTD = $this; // store current td
prevTDVal = $this.text();
span = 1;
}
});
});
</script>
我尝试过类似 <td rowspan=<?=count[$k2]?><?php echo $sum[$k1];?></td>
的操作并通过更改 $("#table2 td:first-child")
来制作与项目名称相同的 javascript至$("#table2 td:last-child")
但这些都不起作用。总计仍与项目类别的最后一行位于同一行。
P/S:请不要建议我对计算部分进行任何更改,因为计算工作正常并且结果都是正确的。我的问题只是总量的输出结构。
最佳答案
使用当前的 javascript 代码,您只需在设置 rowspan
之后添加以下两行即可对于td:first-child
-
prevTD.siblings().last().attr("rowspan", span).text($this.siblings().last().text());
$this.siblings().last().remove();
所以你的代码现在看起来像 -
<script>
$(document).ready(function() {
var span = 1;
var prevTD = "";
var prevTDVal = "";
$("#table2 td:first-child").each(function() { //for each first td in every tr
var $this = $(this);
if ($this.text() == prevTDVal) { // check value of previous td text
span++;
if (prevTD != "") {
prevTD.attr("rowspan", span); // add attribute to previous td
prevTD.siblings().last().attr("rowspan", span).text($this.siblings().last().text()); // add rowspan attribute to previous td's last sibling, and set the text
$this.siblings().last().remove(); // remove the current td's last sibling
$this.remove(); // remove current td
}
} else {
prevTD = $this; // store current td
prevTDVal = $this.text();
span = 1;
}
});
});
</script>
在此行动jsFiddle example - http://jsfiddle.net/aoqq43yg/
<小时/>编辑
因为只有每组的最后一行有 Total
单元格,您需要找到这些行,将它们移动到组的顶部,并增加 rowspan
。使用与其他 JavaScript 类似的循环 -
var prevTR = 0;
$("#table2 tr").each(function(index,value) { // each row
if($(this).children("td:eq(3)").text() != ""){ // if 4th td is not empty
$("#table2 tr:eq("+prevTR+")").append($(this).children("td:eq(3)").attr("rowspan", (index+1) - prevTR)); // remove td, and move to the top row, and set the rowspan
prevTR = index+1; // reset to the next row
}
else {
}
});
确保先运行此代码,然后再运行其他代码。你的完整代码看起来像 -
<script>
$(document).ready(function() {
var prevTR = 0;
$("#table2 tr").each(function(index,value) {
if($(this).children("td:eq(3)").text() != ""){
$("#table2 tr:eq("+prevTR+")").append($(this).children("td:eq(3)").attr("rowspan", (index+1) - prevTR));
prevTR = index+1;
}
else {
}
});
var span = 1;
var prevTD = "";
var prevTDVal = "";
$("#table2 td:first-child").each(function() { //for each first td in every tr
var $this = $(this);
if ($this.text() == prevTDVal) { // check value of previous td text
span++;
if (prevTD != "") {
prevTD.attr("rowspan", span); // add attribute to previous td
$this.remove(); // remove current td
}
} else {
prevTD = $this; // store current td
prevTDVal = $this.text();
span = 1;
}
});
var preTR = 0;
});
</script>
关于javascript - PHP表行跨度基于关键mysql的总计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33863954/
我需要一些帮助。 我希望“总计”由“数量*价格=总计”计算(到目前为止没问题)。问题是我还需要通过“总/价格=数量”来计算“数量”,即如果一个字段发生更改,另一个字段也会自动更改。 我做了一个非常简单
我的项目即将结束,但在解决它时遇到了一些问题。我是一名厨师,想要自己的应用程序与他自己的业务相关 我的表单称为“菜谱”,并包含数量、单价、使用百分比。 假设您有 1 公斤苹果,价格为 5 欧元。清洁结
我的数据库表是: 产品展示 - ID - 名称 ... 订单 - ID - 状态 ... OrderItems - ID -order_id -product_id -数量 -line_total 我
我的项目即将结束,但在解决它时遇到了一些问题。我是一名厨师,想要自己的应用程序与他自己的业务相关 我的表单称为“菜谱”,并包含数量、单价、使用百分比。 假设您有 1 公斤苹果,价格为 5 欧元。清洁结
exchanges表结构: id exchange created_at updated_at deleted_at start_time
我正在开发 Telerik RadGrid,网格内有多个 radtextbox,如 A、B、C 和 D。我使用带有正则表达式验证的 radtextbox 来验证带有数字的 A、B 和 C 文本框。然而
我有一个非常简单的$lookup聚合查询,如下所示: {'$lookup': {'from': 'edge', 'localField': 'gid', 'foreignField': 't
我正在尝试做一些与我之前问过的问题非常相似的事情,但我似乎无法让它正常工作。这是我之前的问题:How to get totals per day 表格如下: Table N
[更新] 谢谢大家,最终代码: var EUR_share_cost = 0; var USD_share_cost = 0; var GBP_shar
由于某种原因,下面的这部分代码没有将每个数组项添加到一起。我单步执行调试器,正在创建并递增数组项,但 total += ScoreArray[i]; 似乎没有将已输入的数字相加。相反,我只是将第一个输
我在这里有点迷路了。我有一个 for 循环,它增加一个值,如下所示: int nu01 = 10000; int level = 0; int increase = 35000; for (int i
请引用之前的问题:Sum total for column in jQuery 我使用了 Aymen 的解决方案,但我对其进行了编辑以满足我的需要。它停止工作,我的代码如下所示,在 jsfiddle
Date Flight ID Member ID Seat Type Seat Price 2013-07-28 F71498 M692
我希望程序忽略零总数。我正试图阻止向非参与者提供零总数的汽车奖励。我在 && 运算符后面添加了 >= 表达式。这对于击杀数和净值来说正确吗? $fetch_nor_killers = mysq
我有下表: CREATE TABLE zoom (`id` int, `fb_id` int, `date` datetime); INSERT INTO zoom (`id`, `f
我想知道是否有一种方法可以将已计算的派生列的总和添加到新列中。 Employee_KT_State --------------------------------------------------
在 SQL 中,我想获得来自每个用户的网站点击率的百分比。为此,我需要获取 site hits 列的总和,但我的查询在另一列上使用了 GROUP By。 除了 GROUP BY 中的每个 user_i
我有以下查询: SELECT SUM(case when s1 = 'fel' then 1 else 0 end) as s1_count, SUM(case when s2 = '
我已经使用 HTML 创建了一个表格。该表由一个标题和许多称为 Family 的行组成。每个家庭行可以有许多行代表家庭的各个成员(请参见下面的代码)。 Family N
如何使用 javascript 给出 float 总计。请 friend 们帮助我。 function addNumbers() {
我是一名优秀的程序员,十分优秀!