Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 td 标记中有一个表,我想删除其中的一些元素(table tr td),但至少我想保留其中的数据
table
tr
td
这是示例代码
<table> <tr> <td>some data</td> <td> <table><tr><td>But i need to retain this data</td></tr></table> </td> </tr> </table>
我怎样才能做到这一点?
尝试
$('table td:has(table)').text(function(){ return $(this).text() })
演示:小提琴