目前,我正在使用datepicker jquery ui小部件来允许用户从日历中选择日期。
我想要更改我拥有的内容,以便我可以在悬停/点击“选择你的一天”的文字时显示日历,然后点击日历选项时,它会重定向到一个页面。
这可能吗?
Jquery目前 -
<script>
$(function() {
$( "#datepicker" ).datepicker({ dateFormat: 'yy-mm-dd' });
$('#datepicker').datepicker('setDate', 'today');
});
</script>
HTML
<input type="text" id="datepicker" size="30" name="date"/>
干杯
答案 0 :(得分:0)
1
然后单击日历选项时,它将重定向到a 页。
http://api.jqueryui.com/datepicker/#option-onSelect
$( "#datepicker" ).datepicker({
dateFormat: 'yy-mm-dd',
onSelect: function(){
document.location.href = '/';
}
});
2
我可以在悬停/点击“选择”的文字时显示日历 你的一天'
$('#datepicker').on('focus', function(){
alert('Choose your date');
});