问问题
1941 次
3 回答
7
$('a').filter(function(){
return this.innerHTML === 'N';
}).replaceWith('N');
于 2012-11-09T04:52:50.873 回答
0
添加您选择的类名,以便您可以更好地控制存在的所有 td 元素中的 td 元素:例如:“report_td”
所以html看起来像这样:
<td align="center" class="report_td" headers="MPA_CHANGED">...</td>
然后像这样尝试:
$(function(){
$("td.report_td").each(function(i, e){
var tdElement = $(e);
var value = tdElement.find("a").text();
if(value == "N") {
tdElement.html("N");
}
});
});
于 2012-11-09T05:01:25.217 回答
0
$('a').each(function() {
if ( $(this).text() == 'N') {
$(this).replaceWith('N');
}
});
于 2012-11-09T05:07:30.577 回答