如何删除HTML标记,具体取决于内容是什么?
例如:
People Hide Also Hide
如果内容等于"隐藏"和"也隐藏",我该如何删除标签?
尝试:contains()选择器:
:contains()
$( "a:contains('Hide')" ).remove();