How do I open the jquery datepicker by clicking on a hyperlink?
问题 I have a link <a href="#">Choose Date</a> that I want to click and pop open the datepicker. Is there any way to do this? 回答1: Yes, by calling it on a div and then showing/hiding that div. Use altField to write the date to a hidden input element. 回答2: you can do this right. you can have a click handler for a href and handle the code inside that <a href="#" class="sample">Choose Date</a> $('.sample').click(function() { // write your logic here return false; }); 来源: https://stackoverflow.com