jquery datepicker date manual input

前端 未结 1 695
小鲜肉
小鲜肉 2020-12-20 12:00

How to enable date manual input using \"jQuery UI Datepicker 1.8.4\"?

I can input date manually in chrome but not firefox by default.

相关标签:
1条回答
  • 2020-12-20 12:49

    You can type in a date in both chrome and firefox, I checked. The one thing that the datepicker will prevent by default though, is that it only allows characters which are valid in the current date format to be typed. So if your date format is "03/02/1980" then it will not allow any letters to be typed etc. only numbers and /.

    If this is what you want to turn off, to allow all characters to be typed, then use this:

    $( ".selector" ).datepicker({ constrainInput: false });
    

    constrainInput set to false will allow anything to be typed.

    0 讨论(0)
提交回复
热议问题