我想停用Prime Faces inputTextarea中的拼写检查。
spellcheck="false"中不能使用p:inputTextarea

<p:inputTextarea value="#{mybean.cardescription}"
        cols="95"
        autoResize="true"
        rows="20"/>

最佳答案

使用以下命令:

<h:head>
    <h:outputScript   name="/js/util/disableSpellCheck.js"/>
</h:head>
$('inputTextId').attr('spellcheck','false')

10-08 05:21