Ben*_*sko 5 jsf spell-checking primefaces jsf-2
我想停用Prime Faces中的拼写检查inputTextarea.
spellcheck="false" 是不可能的 p:inputTextarea
<p:inputTextarea value="#{mybean.cardescription}"
cols="95"
autoResize="true"
rows="20"/>
Run Code Online (Sandbox Code Playgroud)
使用以下:
<h:head>
<h:outputScript name="/js/util/disableSpellCheck.js"/>
</h:head>
Run Code Online (Sandbox Code Playgroud)
$('inputTextId').attr('spellcheck','false')
Run Code Online (Sandbox Code Playgroud)