양식 요소에 대한 맞춤법 검사를 끄려면 코드는 다음과 같습니다 -
예시
<!DOCTYPE html> <html> <head> <h1>Disabling Spellcheck Example</h1> <form> <p>Your Name:</p> <input type="text" name="fname" spellcheck="false"> <p>About Yourself</p> <textarea name="about you" spellcheck="true"></textarea><br> <input type="submit"> </form> <h2>Type wrong spelling in the above input field to see spellcheck in action</h2> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -
입력 필드에 무언가를 입력할 때 -