我希望在单击按钮时突出显示文本区域中的文本,但文本不会永久突出显示。
$(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中永久突出显示文本..