spellcheck属性
spellcheck 属性规定是否对元素内容进行拼写检查。
可对以下文本进行拼写检查:
<element spellcheck="value">
值 | 描述 |
true | 规定应当对元素的文本进行拼写检查。 |
false | 规定不应对元素的文本进行拼写检查。 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
</head>
<body>
<p contenteditable="true" spellcheck="true">这是可编辑的段落。请试着编辑文本。</p>
</body>
</html>
这是可编辑的段落。请试着编辑文本。