3

我正在使用 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

});

请尽快给予答复。

4

1 回答 1

4

在 showOn 中,使用“both”代替“button”

$(".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

});
于 2013-06-09T09:30:30.923 回答