gpt4 book ai didi

javascript - jQuery 替换表中的字符

转载 作者:行者123 更新时间:2023-11-28 05:19:42 25 4
gpt4 key购买 nike

这是我的 table

<table>
<tr>
<td>"James"</td>
<td>"do"</td>
<td>"you</td>
<td>"like</td>
<td>"your life"</td>
</tr>
</table>


<button>Let the magic begin</button>

我想删除所有出现的 " 符号,所以 <td>"James"</td> 将是 <td>James</td> 等等。

我创建了这个函数,但它什么也没做。

$("button").on( "click", function(e) {
$('table').find("tr").each(function() {
$(this).replace(/\+/g, '');

});
});

最佳答案

您必须在正则表达式中实际定位引号

$("button").on( "click", function(e) {
$('table tr td').text(function(_,txt) {
return txt.replace(/\"/g, '');
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table>
<tr>
<td>"James"</td>
<td>"do"</td>
<td>"you</td>
<td>"like</td>
<td>"your life"</td>
</tr>
</table>


<button>Let the magic begin</button>

关于javascript - jQuery 替换表中的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40224148/

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