Delete default value of an input text on click

前端 未结 13 1960
逝去的感伤
逝去的感伤 2020-11-29 18:24

I have an input text :


I want to put a default value like

13条回答
  •  [愿得一人]
    2020-11-29 18:58

    EDIT: Although, this solution works, I would recommend you try MvanGeest's solution below which uses the placeholder-attribute and a javascript fallback for browsers which don't support it yet.

    If you are looking for a Mootools equivalent to the JQuery fallback in MvanGeest's reply, here is one.

    --

    You should probably use onfocus and onblur events in order to support keyboard users who tab through forms.

    Here's an example:

    
    

提交回复
热议问题