如何在Web浏览器输入字段中禁用字典查找?

Ros*_*sey 4 html browser

当用户输入日期时,它以红色下划线(因为它不在某个字典中).这肯定是FF中的问题,可能是大多数浏览器.有没有办法将输入字段标记为"不要指望英文单词在这里?"

Ric*_*dle 5

使用该spellcheck属性.在Firefox 3.0中测试过:

<html><body>
<textarea>Teh speling is checkd.</textarea>
<textarea spellcheck='false'>Teh speling is not checkd.</textarea>
</body></html>
Run Code Online (Sandbox Code Playgroud)