gpt4 book ai didi

javascript - 使用highlighttextarea插件突出显示文本区域中的文本(如果不在数组中)

转载 作者:行者123 更新时间:2023-12-02 15:45:58 24 4
gpt4 key购买 nike

我正在使用 jQueryhighlightTextarea 插件来突出显示 html 文本区域中的单词。

jQuery highlightTextarea

它当前突出显示数组中的那些单词,

var words = ['google', 'facebook', 'github', 'microsoft', 'yahoo', 'stackoverflow'];

但是我想要做的是突出显示不在数组中的所有单词。有什么办法可以做到这一点吗?

我的jsfiddle:http://jsfiddle.net/fr7wb2b4/11/

最佳答案

愚蠢的我还没想到,这个怎么样:

$(document).ready(function () {
var words = ['google', 'facebook', 'github', 'microsoft', 'yahoo', 'stackoverflow'];
$('#textarea').highlightTextarea({
words: [
{ color : '#F00',
words : ['(.+)']
}, // Make everything highlighted

{ color : '#FFF',
words : words
} // Make white what matched
]
});
});

Fiddle with it over here

您还可以使用words : ['(\\w+)']仅突出显示最初的单词

关于javascript - 使用highlighttextarea插件突出显示文本区域中的文本(如果不在数组中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32203053/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com