- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想更改基于 th、td 值的值..假设数字向右对齐(s.no 除外),文本向左对齐。
<button type="submit" class="btn btn-raised btn-primary mr-5"
(click)="productPrintSection('productSection')">
<i class="fa fa-check-square-o"></i> Print
</button>
我的 Html 代码如下,这些数据动态获取......
<div id="invoice-items-details" class="pt-2">
<div class="row">
<div class="table-responsive col-sm-12">
<table class="table">
<thead>
<tr>
<th
*ngFor="let column of productColumns">
{{column.name}}
</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let list of productSource; let i=index">
<td
*ngFor="let column of productColumns">
{{ list[column['value']] }}
</td>
</tr>
</tbody>
</table>
</div>
</div>
我的打印部分代码是
productPrintSection = function (reportSection) {
let printContents, popupWin;
printContents = document.getElementById(reportSection).innerHTML;
popupWin = window.open('', '_blank', 'top=0,left=0,height=100%,width=auto');
popupWin.document.open();
popupWin.document.write(`
<html>
<head>
<style>
body { width: 99%;}
h1 {
text-align:center;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
label { font-weight: 400;
font-size: 13px;
padding: 2px;
margin-bottom: 5px;
}
table, td, th {
border: 1px solid silver;
}
table td {
text-align: center;
font-size: 13px;
}
table th {
font-size: 13px;
}
table {
border-collapse: collapse;
width: 98%;
}
th {
height: 26px;
}
</style>
</head>
<body onload="window.print();window.close()">${printContents}</body>
</html>`
);
popupWin.document.close();
}
能否建议我如何显示数字向右对齐(s.no 除外)和文本向左对齐。
最佳答案
好吧,我找不到任何用于选择其中包含数字的特定单元格的 css 选择器。这就是为什么我制作了一个 javascript 函数来检查狱友是否可以使用 !isNaN(col.innerText)
转换为数字。只需在需要时调用 styleTable
函数即可。
以下代码段包含一个基于您提供的代码的示例。
var table = document.getElementById("products");
window.onload = function() {
styleTable(table)
};
function styleTable(table) {
//loop through the second row to check what kind of value they have
for (var i = 1, row; row = table.rows[i]; i++) {
//exclude the first column "S.no"
for (var j = 1, col; col = row.cells[j]; j++) {
//check if the column value is a number
if (!isNaN(col.innerText)) {
col.style.textAlign = "right";
}
}
}
}
body {
width: 99%;
}
h1 {
text-align: center;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
label {
font-weight: 400;
font-size: 13px;
padding: 2px;
margin-bottom: 5px;
}
table,
td,
th {
border: 1px solid silver;
}
table td {
text-align: center;
font-size: 13px;
}
table th {
font-size: 13px;
}
table {
border-collapse: collapse;
width: 98%;
}
th {
height: 26px;
}
<table id="products">
<tr>
<th>S.no</th>
<th>Product Name</th>
<th>Product code</th>
<th>Purity</th>
<th>Store</th>
<th>city</th>
<th>state</th>
<th>quantity</th>
<th>weight</th>
<th>total</th>
<th>total orders</th>
</tr>
<tr>
<td>1</td>
<td>xyzzy</td>
<td>1001010</td>
<td>54.00</td>
<td>Default</td>
<td>Hyderabad</td>
<td>dashdsaf</td>
<td>10</td>
<td>2135.5000</td>
<td>239280324.09</td>
<td>12</td>
</tr>
<tr>
<td>2</td>
<td>xyzzy</td>
<td>1001010</td>
<td>54.00</td>
<td>Default</td>
<td>Hyderabad</td>
<td>adsfsdf</td>
<td>0</td>
<td>2135.5000</td>
<td>239280324.09</td>
<td>13</td>
</tr>
</table>
希望这对您有所帮助!
提供了一种更动态的方式来相应地设置每个单元格的样式。
关于html - 如何根据表头检查表中 <td> 值的条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61947948/
我有一个输入文件 Corn Fiber 17 Beans Protein 12 Milk Protien 15 Butter Fat 201 Eggs Fat 2 Bread Fiber 12 Egg
有什么方法可以检查工作表是否有过滤数据(如果有过滤数据,则清除过滤器,否则不执行任何操作)?我这里有这段代码,但我不知道如何编写第二部分: Sub ProtectAll() Dim wSheet
我正在编写如下查询,以根据特定值从表中检索特定值。 select name from XXX where number="2033" 此查询将在整个表中搜索。现在我希望这个查询应该只检查从第四行到最后
有没有办法检查您尝试保存到表中的实例是否已存在于该表中,但您不知道这样的 ID: MyObject instance = (MyObject) session.get(MyObject.class,
有没有办法检查表的列中是否存在多个值,即使这些值不在同一行中? 我有这个问题: select (select country from storage where country = 'Germany
我正在尝试构建一个脚本,使用 jQuery $each 函数检查复选框是否被选中。下面是 HTML 代码: World Economy
我想检查表 tr td 是否仍然有虚拟文本。如果那是真的,那么应该出现一条消息,他们必须在那里输入一些文本(通过拖放) 拖放工作正常那不是问题我只需要检查 td 是否仍然有虚拟 tekst否则无法进行
我有一个主表人 人员字段:Id、AlterationDate 以及一对多链接中的操作表操作 操作字段:Id、PeopleID、CreationDate 我想查找 people 中更改日期晚于由 per
CREATE UNLOGGED TABLE IF NOT EXISTS 我如何首先检查是否创建了所需的表 UNLOGGED,如果没有相应地更改表? Postgres 9.4 最佳答案 您可以检查表
我试图在鼠标悬停时突出显示表格行。每行 (tr) 已经有一个“偶数”或“奇数”类。因此,要突出显示鼠标悬停时的行,我需要先从该行中删除 CSS 类“偶数”或“奇数”。请多多看我的剧本: $('tr')
我想检查一行是否包含具有特定标题和年份的 td。这是我的函数,问题是 title2 和year2 设置为未定义。如何正确获取单元格值? var table = $("#mainTable");
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 6 年前。 Improve th
我有一个名为:workers 的表和一个名为:schedule 的表,其格式如下: worker : id, name 时间表: day, month, name 我需要询问表“workers”给我两
我有以下功能,它显示来自数据库的博客文章: function show_blog_posts() { include('connection.php'); $sql = "SELECT
我有一个包含行的表,每一行都有几个 元素。最后一个元素有一个复选框。他们在 设置为 runat="server" .我在页面上有另一个名为“chkAll”的复选框,单击它时,我想用 javascrip
我希望创建一个 HIVE SQL 查询来查找表 1 中不存在于表 2 中的所有值。我知道我需要使用连接,但是我无法弄清楚如何在这种情况下实现它...... 谢谢, 詹姆士 例如: Table1 url
我想做的是创建一个随机字符串,对照表检查它,如果它已经存在,则创建一个新的随机字符串,然后重试,如果它没有将其插入到所述表中。 我的脚本基于昨天给我的脚本,除了 if(mysql_num_rows($
我正在尝试创建一个页面来查找您输入的文本是否存在于我的数据库表中。但即使存在,它也只返回 0。 最佳答案 total; } ?> 关于php - 检查表(
我有一个名为 origA 的数据框: X, Y 10, 20 11, 2 9, 35 8, 7 还有一个名为 calcB 的: Xc, Yc 1, 7 9, 22 我想检查 calcB 中的每个 Xc
嗨,我有两个表,一个是 topic_dialogue,第二个表是 topic_dialogue_comments 表 topic_dialogue 具有列 id,表 topic_dialogue_co
我是一名优秀的程序员,十分优秀!