在文本中搜索特定单词并使用jQuery添加类

时间:2014-05-03 20:23:18

标签: jquery html

我有这样的文字:

<p>Hi this is a text and i wan't to add a class to some words which are here</p>

我不想在这个词上添加“.red”类:例如“some”,“here”,“add”。 我怎样才能用jQuery做到这一点? 代码越简单就越容易。

1 个答案:

答案 0 :(得分:1)

您可以使用此代码:

$("p").each().function(){
    $this=$(this);
    if($this.html().indexOf("some") > -1)
        $this.addClass("red");
}