gpt4 book ai didi

javascript - bootstrap-table: th - 在左侧添加一个图标

转载 作者:太空宇宙 更新时间:2023-11-04 09:23:21 26 4
gpt4 key购买 nike

有人知道如何在引导表标题的左侧添加内容吗?如下图所示,我想添加一个图标(问号或其他)作为可点击的链接。

enter image description here

jsFIDDLE

<table id="summaryTable">
<thead>
<tr>
<th data-field="id" data-align="center" data-width="20px" >id</th>
<th data-field="name" data-align="center" data-sortable="true">Name</th>
<th data-field="type" data-align="center" data-sortable="true">type</th>
</tr>
</thead>
</table>

最佳答案

您可以向每个 th 添加一个元素:

  $('#summaryTable thead th').each(function() {
s = $('<span style="position: absolute; left: 4px; top: 8px; cursor: pointer;">?</span>')
s.click(function(e) {
e.stopPropagation();
alert('Question mark clicked')
});
$(this).append(s)
})

Note the e.stopPropagation(); to make sure the clicks on the question mark will not cause also a click on the entire TH

这是你的 jsfiddle 的一个分支:
https://jsfiddle.net/dekelb/e403uvuh/

关于javascript - bootstrap-table: th - 在左侧添加一个图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41352382/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com