Common issues and solutions for basic Mini Program components.
Issues with keyboard and component interaction
Components that launch the keyboard, such as input and textarea, use the native keyboard by default. If the keyboard does not interact properly with the component, add the enableNative="{{false}}" property to the component:
<textarea value="{{inputValue}}" enableNative="{{false}}" maxlength="500" onInput="onInput" />
The component then uses the WKWebView keyboard instead.
该文章对您有帮助吗?