gpt4 book ai didi

jquery - 如何使用 jQuery 找到仅包含不间断空格的所有表格单元格?

转载 作者:行者123 更新时间:2023-12-01 08:29:22 25 4
gpt4 key购买 nike

我只需要使用 jQuery 查找表中包含   的单元格。

 <table>
<tr>
<td>&nbsp;</td>
<td>Something</td>
<td>something else</td>
<td>&nbsp;</td>
</tr>
</table>

有什么想法吗?

最佳答案

快速猜测,也许是更好的方法

更新 - 感谢 Tomalak

var x = $('table tr td').filter( function(){
return $(this).text() == String.fromCharCode(160);
})

关于jquery - 如何使用 jQuery 找到仅包含不间断空格的所有表格单元格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/447550/

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