如果其中的文本包含特定单词,我想检查tinymce textarea,如果是,则将其颜色更改为红色。
$(".show_words").click(function(){
$("#content tinymce.get('textarea_id').getContent():contains('word')").css("color","red");
});
不幸的是,什么也没有发生。如何正确编写此命令?谢谢
编辑:HTML:
<div id="content">
<input type="button" value="show words" class="show_words"/><br/>
<textarea name="drug_description" id="textarea_id" cols="50" rows="15"></textarea>
</div>