在codeigniter中突出显示textarea中的文本

时间:2015-11-18 05:26:38

标签: php codeigniter

我尝试使用codeigniter突出显示textarea中字符串中的特定单词。我的输入是$string=array(); $highlight=array();

foreach($highlight as $k=>$v)
    {

        foreach($v as $n)
        {
         $string['word']= highlight_phrase($string['word'], $n, '<span style="color:#990000">', '</span>');

        }  
        }
$data[] ='<div class="Popup"><a href="#megssage"  onclick="show_pop(\''.str_replace('\'', '\\\'', $string['words']).'\')"><i class="fa fa-comment-o"></i></a>
        <textarea name="txtwords[]" class="PopupText" id="txtwd" readonly="readonly" onDblClick="ToggleReadOnlyState('.$string['id'].')" >'.$string['word'].'</textarea></div>';

我在文字区域中使用了上述$string['word'],但我没有使用突出显示的文字输出为<span style="color:#990000">Good</span> Articel ,要突出显示的字词存在于变量{{ 1}}。

1 个答案:

答案 0 :(得分:0)

您必须添加jQuery highlightTextarea插件。

尝试这样:

<textarea cols="50" rows="5">Lorem ipsum hello  </textarea>

<script>
  $('textarea').highlightTextarea({
    words: ['Lorem ipsum', 'vulputate']
  });
</script>