맞춤법 검사기를 추가하려면 HTML에서 spellcheck 속성을 사용하세요. 이 속성은 입력 요소,
Note - 입력 요소에는 작동하지만 비밀번호에는 작동하지 않습니다.
다음 코드를 실행하여 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>
위 내용은 HTML에 맞춤법 검사기를 추가하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!