我正在努力实现的是,那里的所有内容都是带有“border”字样的ap标签,它会删除里面的文字(字边框),并为P添加一个类。到目前为止这是用于查找p并添加该类。如何删除文本?
$('#main-body-content').find('p').filter(':contains(border)').addClass("border");
答案 0 :(得分:4)
试试这个......
$('#main-body-content').find('p').filter(':contains(border)').text("").addClass("border");
答案 1 :(得分:0)
试试这个
// find all divs that have attribute class
$('p').filter(function() { return $(this).attr('class'); }).each(function() {
$(this).html('');
});