我有一个带有 td class-formlabel 和 text (HP)Hello 的 html 表
为什么这不替换文本?
$(this).text().replace('(HP)','');
this
如果是,为什么这会删除格式$("td.ms-formlabel").each(function(){
$(this).text("hello");
给定上面呈现的 html 和下面的代码,如何隐藏匹配的 TR 行?(注意我需要使用下面的条件和循环)
$("td.ms-formlabel").each(function(){ if($(this).text().match('(HP)')){ // what code here to hide the entire TR row ? }
谢谢。