其他分享
首页 > 其他分享> > el-input textarea 内部文字标红

el-input textarea 内部文字标红

作者:互联网

el-input input textarea 内部文字标红

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

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

<textarea spellcheck="false" autocomplete="off" autocapitalize="off" autocorrect="off"></textarea>

标签:文字,el,textarea,波浪,标红,input
来源: https://blog.csdn.net/qq_45780380/article/details/120497012