我正在寻找一个突出显示插件的简单代码,方便用户使用。我希望用户突出显示代码以突出显示代码,只需单击一下按钮,代码就会突出显示,就像stackoverflow一样,没有结果
答案 0 :(得分:1)
对不起,我有点困惑?
当用户从搜索进入某个页面时,您是否希望突出显示搜索结果?如果这样,当您从数据库中获取文本时,这不是TinyMCE它的服务器端进行搜索并使用背景颜色替换文本跨度
E.G [PHP]
// with this example i'm assuming that you link to the post from search is in a get variable called searchTerm if you url_encode it you need to url_decode it.
$highlight = $_GET['searchTerm']; // section
$text = "this is a section of text"
$text = str_replace($highlight, "<span style='background-color:#666;'>$highlight</span>");
echo $text
如果没有,你能澄清你在寻找什么吗?