Сообщение от zxcp
|
Один нюанс.
|
...
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css"> .red{
color: #FF0000;
}
.red > *{
color: #000000;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
$('div').contents().filter(function() {
return this.nodeType == 3 && this.textContent.indexOf('Спам') != -1
})
.parent().addClass("red")
});
</script>
</head>
<body>
<div>
<div> test
<div>Спам <i>test</i></div>
</div>
</div>
</body>
</html>