Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.5k views
in Technique[技术] by (71.8m points)

jquery datepicker date manual input

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.6k users

...