我有这个
<tr><td>other</td><td>mytest</td></tr>
<tr><td>other</td><td>mytest</td></tr>
<tr><td>other</td><td>mytest</td></tr>
<tr><td>other</td><td>mytest</td></tr>
<tr><td>other</td><td>mytest</td></tr>
我想用
替换最后一个td中的文本 <span>mytest</span>
我正在尝试这个,但我包裹了td
而不是text
var r2 = new RegExp("mytest", 'i');
$(" tbody td").filter(function(){
return $(this).text().replace(/\s/g, "").match(r2) }
).wrap('<span class="label-success"></span>');