맞춤법 검사기를 추가하려면 맞춤법 검사를 사용하세요. HTML의 속성. 이 속성은 입력 요소,
참고 − 입력 요소에는 작동하지만 비밀번호에는 작동하지 않습니다.
예시
다음 코드를 실행하여 HTML에 맞춤법 검사기를 추가할 수 있습니다 −
<!DOCTYPE html> <html> <body> Subject: <input type="text" name="sub" spellcheck="true"> <p>Add an incorrect spelling for a word above and see what happens.</p> <p contenteditable="true" spellcheck="true">This is an editable conttent, with a spelling mistake. Click to edit.</p> </body> </html>