本文介绍了jQuery datepicker悬停输出日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用jQuery datepicker,我想显示用户当前悬停的日期。我有下面的代码(您也可以使用JSFiddle尝试代码,

第二个版本保存实际日期+之后提醒它:

The second version with saving the actual Date + alerting it afterwards:

$(function() {
    $("#datepicker").datepicker();
    $(".ui-state-default").on("mouseenter", function() {
        $("h1").text($(this).text()+"."+$(".ui-datepicker-month",$(this).parents()).text()+"."+$(".ui-datepicker-year",$(this).parents()).text());
    var actualDate=$('h1').text();
        alert(actualDate);
    });
});

更新:我之前有.live作为事件处理程序,但.live是否不推荐使用.on()是要去的方法。

UPDATE: I previously had .live as an event handler but .live is no deprecated and .on() is the method to go.

这篇关于jQuery datepicker悬停输出日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-04 21:09