mark.js文章关键字高亮插件使用

2020-05-29  本文已影响0人  程序员的自我修养

<html>

<input type="hidden" name="keyword" value="<?php echo $result->highlight_keywords; ?>">

<div class="sec_main">

     <?phh echo $result->content;?>

</div><!-- section main end -->

<js>

<script src="/static/js/jquery.mark.min.js"></script>

<script>

   $(function() {

       var keyword = $("input[name='keyword']").val();

       var options = {

           "className": "match"

       };

       $(".sec_main").mark(keyword,options);

   });

</script>

高亮文字的样式设置

<css>

.match{

     color:red;

}

上一篇下一篇

猜你喜欢

热点阅读