123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>使用 layDate 独立版</title>
- <meta name="renderer" content="webkit">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="format-detection" content="telephone=no">
- <style>
- body{padding: 20px;}
- .demo-input{padding-left: 10px; height: 38px; min-width: 262px; line-height: 38px; border: 1px solid #e6e6e6; background-color: #fff; border-radius: 2px;}
- .demo-footer{padding: 50px 0; color: #999; font-size: 14px;}
- .demo-footer a{padding: 0 5px; color: #01AAED;}
- </style>
- </head>
- <body>
- <input type="text" class="demo-input" placeholder="请选择日期" id="test1">
- <div class="demo-footer">
- <a href="http://www.layui.com/laydate/" target="_blank">layDate<cite id="version"></cite></a>
- <a href="http://www.layui.com/doc/modules/laydate.html" target="_blank">文档</a>
- <span>© <a href="http://www.layui.com/" target="_blank">layui.com</a><span>
- </div>
- <script src="laydate/laydate.js"></script> <!-- 改成你的路径 -->
- <script>
- lay('#version').html('-v'+ laydate.v);
- //执行一个laydate实例
- laydate.render({
- elem: '#test1' //指定元素
- });
- </script>
- </body>
- </html>
|