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