如何正确使用 bootstrap datetimepicker 语言环境选项
How to use bootstrap datetimepicker locale option properly
我想知道如何正确使用 bootstrap datetimepicker locale 选项。
手册说
locale Default: moment.locale() Accepts: string,
moment.local('locale') See momentjs for valid locales.
You must include moment-with-locales.js or a local js file.
我想包括 it.js
。
我有这个 HTML 但它不适用自定义语言。
<head runat="server">
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="~/Content/bootstrap.min.css" rel="stylesheet" />
<link href="~/Content/bootstrap-theme.min.css" rel="stylesheet" />
<link href="~/Content/bootstrap-datetimepicker.min.css" rel="stylesheet" />
<script src="/Scripts/jquery-1.9.1.min.js"></script>
<%--<script src="/Scripts/moment-with-locales.min.js"></script>--%>
<script src="/Scripts/moment.min.js"></script>
<script src="/Scripts/bootstrap.min.js"></script>
<script src="/Scripts/bootstrap-datetimepicker.min.js"></script>
<script src="/Scripts/it.js"></script>
</head>
那我该怎么办?
有线索吗?
我找到了使用方法。
$('.datepicker').datetimepicker({
语言环境:'es'
});
我想知道如何正确使用 bootstrap datetimepicker locale 选项。
手册说
locale Default: moment.locale() Accepts: string, moment.local('locale') See momentjs for valid locales.
You must include moment-with-locales.js or a local js file.
我想包括 it.js
。
我有这个 HTML 但它不适用自定义语言。
<head runat="server">
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="~/Content/bootstrap.min.css" rel="stylesheet" />
<link href="~/Content/bootstrap-theme.min.css" rel="stylesheet" />
<link href="~/Content/bootstrap-datetimepicker.min.css" rel="stylesheet" />
<script src="/Scripts/jquery-1.9.1.min.js"></script>
<%--<script src="/Scripts/moment-with-locales.min.js"></script>--%>
<script src="/Scripts/moment.min.js"></script>
<script src="/Scripts/bootstrap.min.js"></script>
<script src="/Scripts/bootstrap-datetimepicker.min.js"></script>
<script src="/Scripts/it.js"></script>
</head>
那我该怎么办?
有线索吗?
我找到了使用方法。
$('.datepicker').datetimepicker({ 语言环境:'es' });