How to clear text field on focus of text field

前端 未结 9 2002
悲&欢浪女
悲&欢浪女 2020-12-29 12:15

I want to clear the text field when the user clicks on that

9条回答
  •  南笙
    南笙 (楼主)
    2020-12-29 12:41

    try this ,it worked for me

    add this into your input tag

    
    onfocus="this.value='';"
    

    for example if your code is

    
    
    

    use it like this

    
    

提交回复
热议问题