- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
看下面的CSS
.webgrid-table td:nth-child(1),th:nth-child(1)
{
display:none
}
我只是想知道如何应用一种样式,该样式将应用于除 last tr
或 tfoot
之外的所有 tr。用那种 CSS 指导我。
下面的 html 是我的表格的示例 html。
<table class="webgrid-table" data-swhgajax="true" data-swhgcontainer="gridContent" data-swhgcallback="initScripts">
<thead>
<tr class="webgrid-header">
<th scope="col">
<a data-swhglnk="true" href="http://localhost:13562/WebGrid_Sample2/Show2?sort=ID&sortdir=DESC&page=1">ID ▲</a>
</th>
<th scope="col">
<a data-swhglnk="true" href="http://localhost:13562/WebGrid_Sample2/Show2?sort=FirstName&sortdir=ASC&page=1">First Name</a>
</th>
<th scope="col">
<a data-swhglnk="true" href="http://localhost:13562/WebGrid_Sample2/Show2?sort=LastName&sortdir=ASC&page=1">Last Name</a>
</th>
<th scope="col">
<a data-swhglnk="true" href="http://localhost:13562/WebGrid_Sample2/Show2?sort=StateName&sortdir=ASC&page=1">State Name</a>
</th>
<th scope="col">
<a data-swhglnk="true" href="http://localhost:13562/WebGrid_Sample2/Show2?sort=CityName&sortdir=ASC&page=1">City Name</a>
</th>
<th scope="col">
IsActive
</th>
</tr>
</thead>
<tfoot>
<tr class="webgrid-footer">
<td colspan="6">
<div id="content">
<div id="pager">
<ul class="paginate pag5 clearfix">
<li class="single">Page 5 of 5 of 50</li>
<li class="navpage"><a href="http://localhost:13562/SamplePager/Index">prev</a></li>
<li class="navpage"><a href="http://localhost:13562/SamplePager/Index">next</a></li>
<li><a href="http://localhost:13562/SamplePager/Index">1</a></li>
<li><a href="http://localhost:13562/SamplePager/Index">2</a></li>
<li><a href="http://localhost:13562/SamplePager/Index">3</a></li>
<li><a href="http://localhost:13562/SamplePager/Index">4</a></li>
<li><a href="http://localhost:13562/SamplePager/Index">5</a></li>
<li class="current">6</li>
<li class="navpage"><a href="">next</a></li>
<li class="navpage"><a href="">last</a></li>
<li class="single"><div id="loader">Loading....</div></li>
</ul>
</div>
</div>
</td>
</tr>
</tfoot>
<tbody>
<tr class="webgrid-row-style">
<td class="SmallCols">1</td>
<td class="NameColWidth">Amit</td>
<td class="NameColWidth">Ghosh</td>
<td class="NameColWidth">West Bengal</td>
<td class="NameColWidth">Kolkata</td>
<td class="text-center checkbox-width SmallCols">
<input type="checkbox" id="select" class="box" name="select" checked="'checked'" value="True">
</td>
</tr>
<tr class="webgrid-alternating-row">
<td class="SmallCols">2</td>
<td class="NameColWidth">Tridip</td>
<td class="NameColWidth">Bhattacharjee</td>
<td class="NameColWidth">Bihar</td>
<td class="NameColWidth">DharBganga</td>
<td class="text-center checkbox-width SmallCols">
<input type="checkbox" id="select" class="box" name="select" checked="'checked'" value="True">
</td>
</tr>
<tr class="webgrid-row-style">
<td class="SmallCols">3</td>
<td class="NameColWidth">Dipyendu</td>
<td class="NameColWidth">Majumdar</td>
<td class="NameColWidth">Orissa</td>
<td class="NameColWidth">Puri</td>
<td class="text-center checkbox-width SmallCols">
<input type="checkbox" id="select" class="box" name="select" value="False">
</td>
</tr>
<tr class="webgrid-alternating-row">
<td class="SmallCols">4</td>
<td class="NameColWidth">Arijit</td>
<td class="NameColWidth">Banerjee</td>
<td class="NameColWidth">West Bengal</td>
<td class="NameColWidth">Barrack Pore</td>
<td class="text-center checkbox-width SmallCols">
<input type="checkbox" id="select" class="box" name="select" value="False">
</td>
</tr>
<tr class="webgrid-row-style">
<td class="SmallCols">5</td>
<td class="NameColWidth">Madhabi</td>
<td class="NameColWidth">Sinha</td>
<td class="NameColWidth">West Bengal</td>
<td class="NameColWidth">Ranaghat</td>
<td class="text-center checkbox-width SmallCols">
<input type="checkbox" id="select" class="box" name="select" checked="'checked'" value="True">
</td>
</tr>
</tbody>
</table>
谢谢
最佳答案
像这样使用不同的选择器,它不包括 tfoot
:
.webgrid-table thead td:first-child,
.webgrid-table thead th:first-child,
.webgrid-table tbody td:first-child,
.webgrid-table tbody th:first-child {
display: none;
}
您还在第二条规则中保留了 .webgrid-table
,因此它适用于所有表,tr:first-child
。我还用更兼容的 :first-child
替换了 :nth-child(1)
。
关于html - 如何应用将被 tfoot 或 last TR 忽略的 CSS 样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34531887/
我想要数组中所选 tr 的所有下一个 tr 的 data-id。我使用此代码,但这不是一个好代码。 var ids = Array.prototype.slice.call($("tr.selecte
JSFiddle:http://jsfiddle.net/9u8tnh97/ 我正在使用 jQuery 和 Bootstrap。我有一张 table 4 像这样的元素:
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
在 Notepad++ 中,我试图制作一个正则表达式来匹配标签。起初,我认为必须转义大括号,所以我尝试了 \ .然而,这不仅符合我预期的开始标签,而且匹配所有 。 s( 和 )。这是为什么? 最佳答
我正在尝试定位其中包含子表行元素的表中的最后一个父表行。我已尝试使用下面的 jQuery 来定位 :last 伪值,但是,如预期的那样,它的目标是目标父表中的绝对最后一个表行元素。 $('table[
我想插入新的在每个现有的 之后。我的功能: var element = document.querySelector('tr.cart-item'); var newElement = docume
这个问题在这里已经有了答案: RegEx match open tags except XHTML self-contained tags (35 个答案) 关闭 9 年前。 我希望这个正则表达式匹
生成此代码是为了做两件事。第一个是单击复选框时突出显示表记录。第二个是即使页面刷新也能记住结果。 Untitled Document
嗨,我正在尝试在 tr 数组中查找 tr属性名称是 docId 是否有任何类型的 jquery 选择器? 我不想只用 for 循环遍历数组然后自己去找。 除非你说我别无选择... 谢谢 最佳答案 如果
我有一张 table ,我想在单击加号图标时在 tr 中打开相同的 tr。我不明白我使用哪个 html 元素打开。 请帮帮我。提前致谢。
对你来说是个小问题:-) 我正在使用 BeautifulSoup 来解析 HTML 页面中表格的内容。问题是在我的输出文件的每一行(CSV/EXCEL)之间,它拉出一个空行......这是 HTML
我制作了一个包含基本信息的表格,每个奇数行和偶数行都有不同的颜色。在 :hover影响它是橙色的,不管它是偶数还是奇数。 但是当我想“分组”3 我发现了一个问题。我试着把它包装成 但它没有用。我的目标
在 lxml 中,我使用 xpath 选择表(具有不同行数)中的所有 tr,除了包含乱码的最后两行。 是否有排除最后两行的模式匹配?我正在浏览 xpath 教程,显然有一个“except”运算符和一个
我在表列表中显示来自数据库的记录。此外,我在每一行中都有一个跟进按钮,如果任何用户单击跟进按钮,则会为特定用户打开一个包含详细信息的弹出窗口。 或者任何其他想法来处理这个问题? 我试过用这样的东西
我有以下表格结构。 当我点击 时我想添加新的 在 旁边其中被点击。 所以结果会是:
使用这个 HTML: 1 2 3 4 我得到这个输出: 1 2 3 4 但我想要的是: 1 2 3 4 如何
嗨,我有一个表格,我在这里做了一些代码来将表格更改为可编辑和可选择...我的要求是 1.当点击一个TR时,它应该变成蓝色,再次点击另一个TR,它将显示蓝色,旧的TR变成白色(威胁不可选择) 我由于一些
这个问题可能令人困惑,但这就是确切的情况.. 我已经动态生成了一些(根据从数据库获取的数据),现在我想允许用户选择其中一个单选按钮,并且我想捕获所单击的行的详细信息,因此请检查我的代码并协助 我的aj
免责声明:HTML、JQuery、Ajax 技能水平 — 垃圾。一直是一个厚客户。 我有一个表单,允许用户输入客户代码和电子邮件地址。我想在客户代码有效时显示客户的姓名。我会错误地通过 Ajax 和
正在尝试添加 其他元素 表中的元素根据 的行跨度该特定元素 元素。在同一功能中,单击 中的此按钮后元素的行数每次增加1,因此也需要增加行数。不知道该怎么做。也许使用 slice()以某种方式发挥作
我是一名优秀的程序员,十分优秀!