我正在使用 jquery datepicker。它正在单击一个按钮,但仅在 mozilla firefox 中,但不在 google chrome 中,也不在 IE 中。请告诉我该怎么做,以便 datepicker 可以在所有浏览器中工作。请jsfiddle
HTML
<input type="button" id="selectdate" value="">
<textarea name="dates" id="dates" maxlength="160" placeholder="your message" rows="4" cols="50"></textarea>
查询
$( "#selectdate" ).datepicker({
altField: $('#dates').val(),
numberOfMonths:1,
altFormat: "yy-mm-dd",
minDate: -0,
onSelect: function( selectedDate ) {
$("#selectdate").val('');
$('#dates').val($('#dates').val()+','+selectedDate);
}
});