标签:
项目中使用了Bootstrap,日期控件就选择了依赖于bootstrap的DatePicker。
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include( "~/Scripts/bootstrap.js", "~/Scripts/respond.js", "~/Scripts/bootstrap-datepicker.js", "~/Scripts/bootstrap-datepicker.zh-CN.min.js")); bundles.Add(new StyleBundle("~/Content/css").Include( "~/Content/bootstrap.min.css", "~/Content/bootstrap-theme.min.css", "~/Content/site.css", "~/Content/bootstrap-datepicker.min.css"));
@section Scripts{ <script> $(function () { // 日期控件设定 $(‘.datepicker‘).datepicker({ format: "yyyy/mm/dd", language: "zh-CN", weekStart: 0, todayBtn: "linked", clearBtn: true, keyboardNavigation: true, todayHighlight: true, autoclose: true }); }); </script> }
下载地址:https://github.com/eternicode/bootstrap-datepicker
标签:
原文地址:http://www.cnblogs.com/Ryukaka/p/4831232.html