日期插件rolldate.js的使用
程序员文章站
2022-04-04 15:07:49
日期插件rolldate.js的使用 下载地址:http://www.jq22.com/jquery-info19834 效果: 代码: ......
日期插件rolldate.js的使用
下载地址:
效果:
代码:
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="x-ua-compatible" content="ie=edge" /> <link rel="stylesheet" href="js/rolldate/rolldate.css" /> <title>日期插件</title> <style> input{ display: block; border-radius: 4px; outline: none; border: 1px solid #ccc; width: 200px; height: 30px; margin: 20px auto; padding-right: 10px; text-align: right; } </style> </head> <body> <input readonly type="text" id="date" placeholder="yy-mm-dd" /> <script src="js/jquery-3.2.1.min.js"></script> <script src="js/rolldate/rolldate.js"></script> <script> $(function() { new rolldate.date({ el: "#date", format: "yyyy-mm-dd", beginyear: 2000, endyear: 2100, theme: "blue", tapbefore: function(el) { console.log("插件开始触发"); }, moveend: function(el, iscroll) { console.log("滚动结束"); }, confirmbefore: function(el, date) { console.log("确定按钮触发"); }, confirmend: function(el, date) { console.log("插件运行结束"); } }); }); </script> </body> </html>
推荐阅读
-
vue插件vue-lazyload懒加载插件的使用及在过程中遇到的图片不更新问题
-
jQuery的滚动条插件Nicescroll是如何使用的?
-
jQuery中关于ScrollableGridPlugin.js(固定表头)插件的使用逐步解析
-
Yii2框架引用bootstrap中日期插件yii2-date-picker的方法,yii2datepicker_PHP教程
-
layer弹窗插件的使用教程
-
eclipse-maven项目使用maven的tomcat插件启动
-
在使用@angular/cli创建的angular项目上添加postcss等一系列移动端自适应插件
-
Onethink1.1 钩子和插件的使用!
-
JS中Date日期函数中的参数使用介绍_基础知识
-
文本jquery.dotdotdot.js插件的使用方法详解