요소를 읽기 전용으로 설정하려면 읽기 전용 기인하다. 다음 코드를 실행하여 읽기 전용을 구현할 수 있습니다. 속성 -
예시
<!DOCTYPE html> <html> <body> <h2>Login</h2> <form action = "/new.php"> <input type = "text" value = "Amit" name = "sname" readonly/><br> <input type = "password" name = "password"> <br><br> <input type = "submit" value = "Submit"> </form> </body> </html>