Calendar 日曆控件使用

<link rel="stylesheet" href="__STATIC__/js/calendar/calendar-blue.css"/>css

<script src="__STATIC__/js/calendar/calendar.js"></script>html

首先引入 calendar.js  calendar-blue.css   文件 下載連接http://files.cnblogs.com/files/beyang/calendar.zipide

 

在HTML 的body 標籤下ui

 1 <input type="text" name="time_start" id="J_time_start" class="date" size="12" >
 2 -
 3 <input type="text" name="time_end" id="J_time_end" class="date" size="12" >
 4 
 5 <script>
 6 Calendar.setup({
 7 inputField : "J_time_start",
 8 ifFormat : "%Y-%m-%d",
 9 showsTime : false,
10 timeFormat : "24"
11 });
12 Calendar.setup({
13 inputField : "J_time_end",
14 ifFormat : "%Y-%m-%d",
15 showsTime : false,
16 timeFormat : "24"
17 });
18 $('.J_preview').preview(); //查看大圖
19 $('.J_cate_select').cate_select({top_option:lang.all}); //分類聯動
20 $('.J_tooltip[title]').tooltip({offset:[10, 2], effect:'slide'}).dynamic({bottom:{direction:'down', bounce:true}});
21 </script>

 

運行一下吧url

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<link rel="stylesheet" href="__STATIC__/js/calendar/calendar-blue.css"/>

</head>
<body>
    
    <input type="text" name="time_start" id="J_time_start" class="date" size="12" >
                    -
    <input type="text" name="time_end" id="J_time_end" class="date" size="12" >
    
    
<script src="__STATIC__/js/calendar/calendar.js"></script>
<script>
Calendar.setup({
    inputField : "J_time_start",
    ifFormat   : "%Y-%m-%d",
    showsTime  : false,
    timeFormat : "24"
});
Calendar.setup({
    inputField : "J_time_end",
    ifFormat   : "%Y-%m-%d",
    showsTime  : false,
    timeFormat : "24"
});
$('.J_preview').preview(); //查看大圖
$('.J_cate_select').cate_select({top_option:lang.all}); //分類聯動
$('.J_tooltip[title]').tooltip({offset:[10, 2], effect:'slide'}).dynamic({bottom:{direction:'down', bounce:true}});
</script>

</body>
</html>

 

效果圖以下:spa

若是想要在input 標籤右側出現小圖標:看下面code

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<link rel="stylesheet" href="__STATIC__/js/calendar/calendar-blue.css"/>
<style type="text/css">
input.date,input.endDate{background: #fff url(__STATIC__/css/admin/bgimg/input_date.png) no-repeat right 3px; padding-right:18px;font-size:12px;}
</style>

</head>
<body>
	
    <input type="text" name="time_start" id="J_time_start" class="date" size="12" >
                    -
    <input type="text" name="time_end" id="J_time_end" class="date" size="12" >
	
	
<script src="__STATIC__/js/calendar/calendar.js"></script>
<script>
Calendar.setup({
	inputField : "J_time_start",
	ifFormat   : "%Y-%m-%d",
	showsTime  : false,
	timeFormat : "24"
});
Calendar.setup({
	inputField : "J_time_end",
	ifFormat   : "%Y-%m-%d",
	showsTime  : false,
	timeFormat : "24"
});
$('.J_preview').preview(); //查看大圖
$('.J_cate_select').cate_select({top_option:lang.all}); //分類聯動
$('.J_tooltip[title]').tooltip({offset:[10, 2], effect:'slide'}).dynamic({bottom:{direction:'down', bounce:true}});
</script>

</body>
</html>
相關文章
相關標籤/搜索