如何关闭 HTML 表单元素中的拼写检查(语法更正)?


要关闭表单元素的拼写检查,代码如下 −

示例

 实时演示

<!DOCTYPE html>
<html>
<head>
<h1>Disabling Spellcheck Example</h1>
<form>
<p>Your Name:</p>
<input type="text" name="fname" spellcheck="false">
<p>About Yourself</p>
<textarea name="about you" spellcheck="true"></textarea><br>
<input type="submit">
</form>
<h2>Type wrong spelling in the above input field to see spellcheck in action</h2>
</body>
</html>

输出

上述代码将产生以下输出 −

在输入字段中输入内容 −

更新日期:2020 年 5 月 6 日

121 人查看

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告