Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我正在使用 ASP.Net 构建自己的新闻网站,我想知道是否有可以使用的自动标记库/脚本。
从某种意义上说,当我创建一篇新的新闻文章时,我指定了我想要标记的单词,库或脚本将搜索文本并在该位置插入一个锚元素。
任何帮助将不胜感激
这是一个脚本,听起来它可以满足您的大部分需求:
http://johannburkard.de/blog/programming/javascript/highlight-javascript-text-higlighting-jquery-plugin.html
包含脚本后,将突出显示类添加到您的 css:
.highlight { background-color: yellow }
编写一些 javascript 来选择要突出显示的项目,例如:
$('li').highlight('bla'); // all occurences of 'bla' in a li element.