How to clear text field on focus of text field

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

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

9条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-29 12:44

    Using jQuery library:

    
    
    $('#clearme').focus(function() { 
      $(this).val(''); 
    });
    

提交回复
热议问题