Web速查-索引

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>

这是可编辑的段落。请试着编辑文本。