仅为第二个onclick按钮突出显示文本

时间:2013-06-04 07:42:51

标签: jquery jsf

我希望在单击按钮时突出显示文本区域中的文本,但文本不会永久突出显示。

$(document).ready(function () {
    $(".user").click(function(){
    $("#form1\\:myarea1").highlightTextarea({
        words: ["Hello World"]
        });
    });
}); 

 <h:form id="form1">
 <br></br>
 <h:inputTextarea id="myarea1" style="width:300px;height:300px;" value="#{user.address}"/>
 </h:form>

 <h:commandButton class="user" value="Hello world"/>

如何在textarea中永久突出显示文本..

0 个答案:

没有答案