el-input textarea 内部文字标红

el-input input textarea 内部文字标红

在chrome中,input、textarea中英文单词的红色波浪线是浏览器默认开启了语法检查导致的。

只需要在textarea或者input中添加属性spellcheck=“false” 即可去除该波浪线:

<textarea spellcheck="false" autocomplete="off" autocapitalize="off" autocorrect="off"></textarea>
上一篇:【js】【笔记】普通js常用


下一篇:Angular系列 -> 在 input、checkbox、radio、textarea 实现双向数据绑定