zoukankan      html  css  js  c++  java
  • jquery日历插件

    jquery日历插件  http://www.jq22.com/yanshi2606

    <!DOCTYPE html>
    
    <html>
    
    <head>
    
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>大气jquery日期日历选择控件date_input.pack</title>
    
    <style type="text/css"> 
    
    *{ margin:0; padding:0;}
    
    body { font:12px/1.5 Arial; color:#666; background:#fff;}
    
    ul,li{ list-style:none;}
    
    img{border:0 none;}
    
    /*---------------------------------------demo css--------------------------------------------*/
    
    .date_selector, .date_selector *{width: auto;height: auto;border: none;background: none;margin: 0;padding: 0;text-align: left;text-decoration: none;}
    
    .date_selector{background:#fbfbfb;border: 1px solid #ccc;padding: 10px;margin:0;margin-top:-1px;position: absolute;z-index:100000;display:none;border-radius: 3px;box-shadow: 0 0 5px #aaa;box-shadow:0 2px 2px #ccc; width:220px;}
    
    .date_selector_ieframe{position: absolute;z-index: 99999;display: none;}
    
    .date_selector .nav{width: 17.5em;}
    
    .date_selector .nav p{clear: none;}
    
    .date_selector .month_nav, .date_selector .year_nav{margin: 0 0 3px 0;padding: 0;display: block;position: relative;text-align: center;}
    
    .date_selector .month_nav{float: left;width: 55%;}
    
    .date_selector .year_nav{float: right;width: 42%;margin-right: -8px;}
    
    .date_selector .month_name, .date_selector .year_name{font-weight: bold;line-height: 20px;}
    
    .date_selector .button{display: block;position: absolute;top: 0;width:18px;height:18px;line-height:16px;font-weight:bold;color:#5985c7;text-align: center;font-size:12px;overflow:hidden;border: 1px solid #ccc;border-radius:2px;}
    
    .date_selector .button:hover, .date_selector .button.hover{background:#5985c7;color: #fff;cursor: pointer;border-color:#3a930d;}
    
    .date_selector .prev{left: 0;}
    
    .date_selector .next{right: 0;}
    
    .date_selector table{border-spacing: 0;border-collapse: collapse;clear: both;margin: 0; width:220px;}
    
    .date_selector th, .date_selector td{width: 2.5em;height: 2em;padding: 0 !important;text-align: center !important;color: #666;font-weight: normal;}
    
    .date_selector th{font-size: 12px;}
    
    .date_selector td{border:1px solid #f1f1f1;line-height: 2em;text-align: center;white-space: nowrap;color:#5985c7;background: #fff;}
    
    .date_selector td.today{background: #eee;}
    
    .date_selector td.unselected_month{color: #ccc;}
    
    .date_selector td.selectable_day{cursor: pointer;}
    
    .date_selector td.selected{background:#2b579a;color: #fff;font-weight: bold;}
    
    .date_selector td.selectable_day:hover, .date_selector td.selectable_day.hover{background:#5985c7;color: #fff;}
    
    /*-----------------------------------------------------------------------------------*/
    
    </style> 
    
    <script src="http://libs.baidu.com/jquery/1.8.3/jquery.min.js"></script>
    
    <script type="text/javascript" src="js/jquery.date_input.pack.js"></script> 
    
    </head>
    
    <body>
    
    <script type="text/javascript">
    
    $(function(){
    
        $('.date_picker').date_input();
    
        })
    
    </script>
    
    <div style=" margin:50px auto; 500px;">
    
    <h3>大气jquery日期日历选择控件date_input.pack</h3>
    
    <input  style="226px;background: #fefefe;border: 1px solid #bbb;font-size: 14px;color: #333;padding: 7px;border-radius: 3px;" type="text" class="date_picker">
    
    </div>
    
    </body> 
    
    </html>
  • 相关阅读:
    PHP基础学习笔记(一)
    安装wampserver之后,浏览器中输入localhost页面显示IIS7解决办法
    HTML5常识总结(一)
    AngularJs中的服务
    AngularJs中的directives(指令part1)
    Happy Number——LeetCode
    Binary Tree Zigzag Level Order Traversal——LeetCode
    Construct Binary Tree from Preorder and Inorder Traversal——LeetCode
    Construct Binary Tree from Inorder and Postorder Traversal——LeetCode
    Convert Sorted Array to Binary Search Tree——LeetCode
  • 原文地址:https://www.cnblogs.com/wzzl/p/4939246.html
Copyright © 2011-2022 走看看