【发布时间】:2021-06-26 01:56:58
【问题描述】:
我在下面有一个 html 代码(使用插件创建)。
我需要将 colspan="6" 更改为 colspan="4"。
我在下面尝试了 jQuery,但它不起作用...
你能帮帮我吗?
<table class="shop_table">
<thead>
<tr><th></tr></th>
</thead>
<tbody>
<tr><td class="aa"></td></tr>
<tr><td class="bb"></td></tr>
<tr><td class="cc" colspan="6"></td></tr>
<tbody>
</table>
$('.shop_table').find('td:last-child').contents().filter(function() {
return this.nodeType===3;
}).remove().end().end().find('colspan="6"').replaceWith($(('colspan="4"'));
谢谢。
【问题讨论】:
标签: php jquery wordpress html-table