正则或jquery取html文本中的id包含“cell”字符串的tr标签

2024-12-27 13:35:56
推荐回答(3个)
回答1:

// 你的cell 包含有没有规定在前面,还是后面,还是只要包含都在内

// tr包含cell的id
$('tr[id*="cell"]');

// tr以cell开关的id
$('tr[id^="cell"]');

// tr以cell结尾的id
 $("tr[id$='cell']);

 如果有什么疑问可以追问

回答2:

 

$('tr').each(function(){

 if(/\w*.?cell\w*.?/.test($(this).attr('id'))){

  alert($(this).html());
//$(this)就是匹配到的tr标签,可以打印看到他里面的内容。
 }

}); 

回答3:

$("tr[id*='cell']").each(function(){
alert($(this).html);

});