You can turn off the input method in the page input control by setting ime-mode
Want to turn off the input method: < input style ="ime-mode:disabled" >
Want to use the current input method: <input style="ime-mode:active">
When a text field does not require Chinese input, we can reduce the possibility of errors by setting the ime-mode attribute value to inactive or disabled. Similarly, we can set the ime-mode attribute value of those text fields that require Chinese input to active.
ime-mode CSS proposed property
grammar:
ime-mode: auto | active | inactive | disabled
parameter:
auto: Does not affect the status of IME. Same as when the ime-mode attribute is not specified
active: Specifies all characters entered using IME. That is to activate the local language input method. Users can still deactivate IME
inactive: Specifies all characters entered without using IME. That is to activate non-native languages. Users can still deactivate IME
disabled : Disable IME completely. For focused controls (such as input boxes), the user cannot activate IME
illustrate:
Sets or retrieves whether the user is allowed to activate the input method (IME) state for inputting Chinese, Korean, Japanese, etc.
The corresponding script feature is imeMode.
This is an IE exclusive style