Mui自定义时间格式:

(function($) {

$.init();

$(document).on('tap','.btn',function(){

var obj = getFormJson($('#formid'));

// console.log(obj.add_time);

// console.log(this.getAttribute('value'));

var optionsJson = this.getAttribute('data-options') || '{}';

var options = JSON.parse(optionsJson);

var id = this.getAttribute('id');

console.log(id);

// var name = this.getAttribute('name');

var picker = new $.DtPicker(options);

var _this = this;

console.log(this);

var dtpicker = new mui.DtPicker({

type: "time",//设置日历初始视图模式

// beginDate: new Date(2015, 04, 25),//设置开始日期

// endDate: new Date(2016, 04, 25),//设置结束日期

labels: ['年', '月', '日','时', '分'],//设置默认标签区域提示语

customData: {

h: [

{ value: '00', text: '00' },

{ value: '01', text: '01' },

{ value: '02', text: '02' },

{ value: '03', text: '03' },

{ value: '04', text: '04' },

{ value: '05', text: '05' },

{ value: '06', text: '06' },

{ value: '07', text: '07' },

{ value: '08', text: '08' },

{ value: '09', text: '09' },

{ value: '10', text: '10' },

{ value: '11', text: '11' },

{ value: '12', text: '12' },

{ value: '13', text: '13' },

{ value: '14', text: '14' },

{ value: '15', text: '15' },

{ value: '16', text: '16' },

{ value: '17', text: '17' },

{ value: '18', text: '18' },

{ value: '19', text: '19' },

{ value: '20', text: '20' },

{ value: '21', text: '21' },

{ value: '22', text: '22' },

{ value: '23', text: '23' }

] ,

i:[

{ value: '00', text: '00' },

{ value: '05', text: '05' },

{ value: '10', text: '10' },

{ value: '15', text: '15' },

{ value: '20', text: '20' },

{ value: '25', text: '25' },

{ value: '30', text: '30' },

{ value: '35', text: '35' },

{ value: '40', text: '40' },

{ value: '45', text: '45' },

{ value: '50', text: '50' },

{ value: '55', text: '55' }

]

}//时间/日期别名

});

if(id=="result"){

picker.show(function(rs) {

console.log(rs.value);

_this.value = '' + rs.value;

});

}else{

// var iTems = dtpicker.getSelectedItems()

dtpicker.show(function(items) {

console.log(items.value);

_this.value = '' + items.value;

})

}

},false);

})(mui);

Mui自定义时间格式:的更多相关文章

  1. linux 获取时间后--自定义时间格式

    自定义时间格式 =================================-===================================== #include <stdio.h ...

  2. Gorm 预加载及输出处理(三)- 自定义时间格式

    前言 Gorm 中 time.Time 类型的字段在 JSON 序列化后呈现的格式为 "2020-03-11T18:26:13+08:00",在 Go 标准库文档 - time 的 ...

  3. Python-时间戳、元组时间的格式、自定义时间格式之间的转换

    一.时间戳.元组时间的格式.自定义时间格式之间的转换 1.下面是三者之间的转换关系: 2.代码如下: import time import datetime print(time.time()) #获 ...

  4. 使用POI读取xlsx文件,包含对excel中自定义时间格式的处理

    package poi; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundExcepti ...

  5. iOS- NSDateFormatter (自定义时间格式)

    一. NSDateFormatter解释 1. 日期(NSDate)是NSString类的格式(stringWithFormat),也可以改变输出,如果需要输出年代信息等则需要进行转换,等等. 2.  ...

  6. mvc页面中,显示自定义时间格式

    1.在model中,遇到datetime格式的字段,用string来表示 model中 /// <summary> /// 开始时间 /// </summary> [Displ ...

  7. jstl自定义时间格式

    <fmt:formatDate value='${time}' pattern='yyyy-MM-dd HH:mm:ss'/> <s:iterator>下的<s:prop ...

  8. Java 中自定义时间格式

    DateFormat df = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); Date d = new Date(); String s ...

  9. Vue 获取时间戳返回自定义时间格式

    直接在Vue全局函数定义: Vue.prototype.padLeftZero = function(str) { return ('00' + str).substr(str.length); }; ...

随机推荐

  1. [CF613D]Kingdom and its Cities

    description 题面 data range \[n, q,\sum k\le 10^5\] solution 还是虚树的练手题 \(f[0/1][u]\)表示\(u\)的子树内,\(u\)是否 ...

  2. BZOJ1997:[HNOI2010]PLANAR——题解

    https://www.lydsy.com/JudgeOnline/problem.php?id=1997 https://www.luogu.org/problemnew/show/P3209 若能 ...

  3. HDU 4549 矩阵快速幂+快速幂+欧拉函数

    M斐波那契数列 Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)Total Sub ...

  4. [solr]solr的安装

    solr是什么? 翻译: SolrTM is the popular, blazing fast open source enterprise search platform from the Apa ...

  5. 008.C++类改写模板类

    1.普通类 //class head class complex //class body {} { public: complex(, double i) :re(r), im(i) {}//构造函 ...

  6. A星寻路算法-Mind&Hand(C++)

    //注1:Mind & Hand,MIT校训,这里指的理解与实现(动脑也动手) //注2:博文分为两部分:(1)理解部分,为参考其他优秀博文的摘要梳理:(2)代码部分,是C++代码实现的,源码 ...

  7. Apache Flume - File通道设计

    原文链接:https://blogs.apache.org/flume/entry/apache_flume_filechannel 说明:翻译在尽量符合原文表达的基础上,尽量保证行文流畅.水平有限, ...

  8. 轮廓算法的结果验证工具/How to validate the outline output

    因为轮廓算法的结果通过直接观察输出很难判断结果的正确性. 但是如果把输入和输出同时绘制出来,用眼睛判别则相对简单许多. 输入建筑的文件内容格式为,粗体格式为建筑高度: 10 110 5020 60 7 ...

  9. js 获取当前链接和获取域名

    <script language="javascript"> //获取域名 host = window.location.host; host2=document.do ...

  10. flush priviliege

    grant all on *.* to usernmae@'%' identified by '*****'; flush privileges grant all on *.* to root@'% ...