博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于bootstrap的datepicker在meteor应用中的使用(不包含bootstrap框架)
阅读量:5249 次
发布时间:2019-06-14

本文共 1747 字,大约阅读时间需要 5 分钟。

1、安装bootstrap3-datepicker包

meteor add rajit:bootstrap3-datepicker

2、使用方法

Example

In your handlebars template:

<input type="text" class="form-control" id="my-datepicker">

In client-side JS code:

Template.mytemplate.rendered=function() {

    $('#my-datepicker').datepicker();

}

3、当我们点击日期控件填写日期时,bootstrap-datepicker.js帮我们动态生成了class为datepicker dropdown-menu的div,其中包括日期控件中的由年月日等构成的div,而dropdown-menu样式是在bootstrap.css中定义的,其样式为:

.input-group.date .input-group-addon i {    cursor: pointer;    width: 16px;    height: 16px;}.datepicker.dropdown-menu {    position: absolute;    top: 100%;    left: 0;    z-index: 1000;    float: left;    display: none;    min-width: 160px;    list-style: none;    background-color: #ffffff;    border: 1px solid #ccc;    border: 1px solid rgba(0, 0, 0, 0.2);    border-radius: 5px;    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);    -webkit-background-clip: padding-box;    -moz-background-clip: padding;    background-clip: padding-box;    *border-right-width: 2px;    *border-bottom-width: 2px;    color: #333333;    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;    font-size: 13px;    line-height: 1.428571429;}.datepicker.dropdown-menu th, .datepicker.dropdown-menu td {    padding: 4px 5px;}

  由于没有使用bootstrap框架,因此需在应用的css文件中包含以上样式定义,其中的定义需依据使用的样式进行适配调整。

4、中文包

meteor add rajit:bootstrap3-datepicker-zh-cn

5、range用法

html:

to

 js:

$('#sandbox-container .input-daterange').datepicker({    language: "zh-CN",    orientation: "auto right",    autoclose: true});

  详见:http://eternicode.github.io/bootstrap-datepicker

转载于:https://www.cnblogs.com/dadream/p/4909365.html

你可能感兴趣的文章
svn“Previous operation has not finished; run 'cleanup' if it was interrupted“报错的解决方法...
查看>>
熟用TableView
查看>>
Java大数——a^b + b^a
查看>>
poj 3164 最小树形图(朱刘算法)
查看>>
服务器内存泄露 , 重启后恢复问题解决方案
查看>>
android一些细节问题
查看>>
KDESVN中commit时出现containing working copy admin area is missing错误提示
查看>>
利用AOP写2PC框架(二)
查看>>
【动态规划】skiing
查看>>
java定时器的使用(Timer)
查看>>
ef codefirst VS里修改数据表结构后更新到数据库
查看>>
boost 同步定时器
查看>>
[ROS] Chinese MOOC || Chapter-4.4 Action
查看>>
简单的数据库操作
查看>>
iOS-解决iOS8及以上设置applicationIconBadgeNumber报错的问题
查看>>
亡灵序曲-The Dawn
查看>>
Redmine
查看>>
帧的最小长度 CSMA/CD
查看>>
xib文件加载后设置frame无效问题
查看>>
编程算法 - 左旋转字符串 代码(C)
查看>>