gpt4 book ai didi

jquery - 如何将的内容从 "Create By"修改为 "Create Date"

转载 作者:太空宇宙 更新时间:2023-11-04 02:10:28 25 4
gpt4 key购买 nike

我正在开发第三方网络应用程序,我有下表:

enter image description here

显示 <th>内容等于“Created BY”,但我需要将文本更改为“Created”。那么我怎样才能使用 css 这样做呢?现在 <th>不会永远是第三个<td>在表格内,所以我正在搜索一个选择器,它主要寻找内容 =“Created BY”,而不是第三个 <th>

有人可以就此提出建议吗?

最佳答案

您可以在包含相关文本的元素的 html() 上使用 replace 函数:

$("th:contains('Create By')").each(function() {
$(this).html(
$(this).html().replace('Create By', 'Create Date')
)
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table>
<tr>
<th>Create By
<div>some content</div>
</th>
</tr>
</table>

关于jquery - 如何将<th>的内容从 "Create By"修改为 "Create Date",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39857831/

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