How do I restrict past dates in html5 input type Date

前端 未结 7 2125
天命终不由人
天命终不由人 2020-12-10 16:40

I am trying to restrict past dates in input type=\"date\".I can able to restrict future dates,But I don\'t have idea about restricting past dates.

7条回答
  •  伪装坚强ぢ
    2020-12-10 17:35

    Hope below code will help you. It is normal HTML5 code:

    /*Enter a date before 1980-01-01:*/
    
    
    /*Enter a date after 2000-01-01:*/
    
    

    see working link

提交回复
热议问题