博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
datetimepicker[jquery-ui]时间控件的三种初始化方法
阅读量:5283 次
发布时间:2019-06-14

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

1.只显示年月日

$( ".datepicker").datepicker({        needDay:true,        changeMonth: true, //显示月份        changeYear: true, //显示年份        showButtonPanel: true, //显示按钮        dateFormat: 'yy-mm-dd', //日期格式    });

2.只显示时分秒(需要引入时间插件文件。1.【】2.汉化【】)

 
$('.datepicker-times').timepicker({                showButtonPanel: true, //显示按钮        timeFormat: "HH:mm:ss",         });
 

3.显示年月日时分秒,

$('.datepicker-times').datetimepicker({        needDay:true,        changeMonth: true, //显示月份        changeYear: true, //显示年份        showButtonPanel: true, //显示按钮        timeFormat: "HH:mm:ss",        dateFormat: "yy-mm-dd"    });

官网:http://trentrichardson.com/examples/timepicker/#tp-examples

转载于:https://www.cnblogs.com/zhixi/p/6589626.html

你可能感兴趣的文章
HTML中head头结构
查看>>
IntelliJ IDEA 最新破解方法
查看>>
sql server和mysql中分别实现分页功能
查看>>
jQuery CircleCounter的环形倒计时效果
查看>>
kafka server管理
查看>>
系统设计与分析(六)
查看>>
Java IO-1 File类
查看>>
HW5.29
查看>>
Linux查看物理CPU个数,核数,逻辑CPU个数;内存信息
查看>>
sqlserver查询效率
查看>>
FoxMail邮件设置
查看>>
percona-toolkit 之 【pt-online-schema-change】说明
查看>>
[模板]大数加法
查看>>
ZeroBrane Lua脚本编辑器代码自动补全
查看>>
linux下播放mp3
查看>>
POJ1611-The Suspects-并查集
查看>>
笔记--cocos2d-x 3.0 环境搭建
查看>>
Unable to create an instance of the Java Virtual Machine
查看>>
jQuery实现鼠标经过时高亮,同时其他同级元素变暗的效果
查看>>
深入理解类成员函数的调用规则(理解成员函数的内存为什么不会反映在sizeof运算符上、类的静态绑定与动态绑定、虚函数表)...
查看>>