1

大家好,我是 Jquery 的新手。

我有这个代码:

$("#dateinput").datepicker({
    dateFormat: "yy-mm-dd",
    beforeShowDay: beforeShowDayHandler,
    showOn: 'both',
    onClose: function (dateText, inst) {
        $(this).attr("disabled", false);
    },
    beforeShow: function (input, inst) {
        $(this).attr("disabled", true);
    }
});

function beforeShowDayHandler(date) {
    if (self.SelectedDayValue != -1) {
        if (date.getDate() != 1) {
            return [false, '', 'selected'];
        }
    }
    return [true, ''];
}

我需要在不同的语言环境中设置它。如何向其中添加几个区域设置供用户选择?

4

1 回答 1

1

这是示例,点击查看源代码

http://jqueryui.com/datepicker/#localization

于 2013-07-19T11:19:39.993 回答