다음은 포커스에서 입력 필드를 지우는 코드입니다 -
예시
<!DOCTYPE html> <html> <head> <h1>Clearing an input field on focus example</h1> <input type="text" onfocus="this.value=''" value="Some random text..."> <h2>Click on the above field to clear its value</h2> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -
필드를 클릭하면 내부 값이 지워집니다 -