日历显示图标以及输入框中的内联日历

时间:2013-06-09 09:24:51

标签: jquery jquery-ui

我正在使用jQuery, 我想显示日历,如果光标放在文本框上,光标放在日历图标上。 我的代码如下: -

$(".dob1").datepicker({
    hideIfNoPrevNext : true,
    yearRange : "-95",
    showOn : "button",
    buttonImage : rootPath + "images/callender-icon.png",
    buttonImageOnly : true,
    changeMonth : true,
    changeYear : true,
    maxDate : '-18Y',
    dateFormat : "mm/dd/yy",
    buttonText : "Choose date of birth",
    inline : true

});

请尽快给出答案。

1 个答案:

答案 0 :(得分:4)

在showOn中,而不是“按钮”使用“both”

$(".dob1").datepicker({
    hideIfNoPrevNext : true,
    yearRange : "-95",
    showOn: "both",
    buttonImage : rootPath + "images/callender-icon.png",
    buttonImageOnly : true,
    changeMonth : true,
    changeYear : true,
    maxDate : '-18Y',
    dateFormat : "mm/dd/yy",
    buttonText : "Choose date of birth",
    inline : true

});