时间插件
Posted huang麦穗儿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间插件相关的知识,希望对你有一定的参考价值。
‘/Scripts/Vendor/jquery-ui/jquery-ui.min.js‘,
<link href="/Content/common/jquery-ui.min.css" rel="stylesheet" />
html部分:
<div class="form-group">
<label class="nowDate col-md-2 control-label" >项目开始日期:</label>
<div class="col-md-4">
<input type="text" class="datepicker form-control col-md-3" placeholder="请输入项目开始时间">
</div>
</div>
js部分:
$scope.openModal = function (id) {
var modalInstance = $uibModal.open({
templateUrl: id,
controller: function ($scope, $uibModalInstance) {
//懒加载,时间插件
$timeout(function () {
angular.element(‘.datepicker‘).datepicker();
}, 100);
$scope.ok = function () {
$uibModalInstance.close(‘closed‘);
}
$scope.cancel = function () {
$uibModalInstance.dismiss(‘cancel‘);
}
},
size: ‘lg‘,
});
}
以上是关于时间插件的主要内容,如果未能解决你的问题,请参考以下文章
Jquery mobiscroll 移动设备(手机)wap日期时间选择插件以及滑动滚动插件