我正在尝试<span>
使用 jQuery 将文本包装在内部标签中。下面的代码不起作用。请指出我哪里出错了。还请提出更好/不同的方法。
var mysearch = '(05/13/2012-11/13/2012)';
$('table:eq(0) tr:eq(1) th:contains("' + mysearch + '")').filter(function () {
return this.html().replace('(05/13/2012-11/13/2012)', '<span class = "red"> (05/13/2012-11/13/2012)</span>');
});