이름 사용 요소의 이름을 설정하는 속성입니다. 다음 HTML 요소와 함께 사용할 수 있습니다.
예시
다음 코드를 실행하여 name을(를) 구현할 수 있습니다. 속성 -
<!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>