英文:
How to remove word hints on android?
问题
如何在 Android 浏览器中删除它?
是否可以使用 JavaScript
实现?
英文:
Have can I remove it from browser by android?
Is this possible with JavaScript
?
答案1
得分: 1
在HTML中,禁用<input>
元素的autocomplete
、spellcheck
、autocorrect
和autocapitalize
属性。
<input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" />
如果要通过JavaScript来实现,可以使用setAttribute()
方法。
const text = document.getElementById("text");
text.setAttribute("autocomplete", "off");
text.setAttribute("autocorrect", "off");
text.setAttribute("autocapitalize", "off");
text.setAttribute("spellcheck", "false");
请注意,上面的代码示例中使用了一个具有id
属性为"text"的<input>
元素。
英文:
In HTML, disable the autocomplete
, spellcheck
, autocorrect
, and autocapitalize
attributes on the <input>
element.
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-html -->
<input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" />
<!-- end snippet -->
Do you want to do it through JavaScript? Use the setAttribute()
method.
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-js -->
const text = document.getElementById("text");
text.setAttribute("autocomplete", "off");
text.setAttribute("autocorrect", "off");
text.setAttribute("autocapitalize", "off");
text.setAttribute("spellcheck", "false");
<!-- language: lang-html -->
<input type="text" id="text" />
<!-- end snippet -->
答案2
得分: -1
const MyTextInput = () => {
return (
<View>
<TextInput
autoCorrect={false}
/>
</View>
);
};
将autoCorrect={false}属性设置为false后,TextInput在您的应用程序中应禁用单词建议和更正。
英文:
something like:
const MyTextInput = () => {
return (
<View>
<TextInput
autoCorrect={false}
/>
</View>
);
};
With the autoCorrect={false} property set, the word suggestions and corrections should be disabled for the TextInput in your app.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论