微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

jquery-ui – JQuery datepicker语言

我使用jqueryui.com的jQuery datepicker,我有一个问题将日历更改为瑞典语,我有这个代码
<script type="text/javascript">
    $(function() {
        $.datepicker.setDefaults($.datepicker.regional['sv']);
        $("#StartDate").datepicker();
        $('#StartDate').datepicker('option','dateFormat','yy-mm-dd');
    }); 
</script>

仍然显示为英文日历。

可能会丢失什么?

解决方法

也许你没有语言文件

语言文件在这里https://github.com/jquery/jquery-ui/tree/master/ui/i18n

A new localization should be created
in a separate JavaScript file named
ui.datepicker-.js. Within a
document.ready event it should add a
new entry into the
$.datepicker.regional array,indexed
by the language code,with the
following attributes:

http://api.jqueryui.com/datepicker/

原文地址:https://www.jb51.cc/jquery/183386.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐