首页 > 代码库 > 一个进行枚举选择的jquery插件(仿easyui风格)

一个进行枚举选择的jquery插件(仿easyui风格)

某次做项目要实现一个功能:

     按星期选择一个连续的时间范围 比如:周一到周五,周六到周日 或 周六到周三

聪明的朋友马上想出办法:用两个选项为周一到周日的下拉列表实现,对 那样可以,但是我觉得不够友好,

所以利用业余时间写下了这个jQuery小插件。

   源码:http://files.cnblogs.com/dint/easyui.daybox.rar

用法: 鼠标点击开始/结束项(红色部分,可自定义)进行选择和取消选择

 效果图:  周一到周五

     周六到周日

     周日到周三

 

 1 <html> 2 <head> 3 <title>daybox测试</title> 4 <script type=‘text/javascript‘ src=‘jquery.min.js‘></script>     5 <script type=‘text/javascript‘ src=‘easyui.daybox.js‘></script>     6 </head> 7 <body> 8 <div id=‘aDayboxDiv‘></div> 9 <script type=‘text/javascript‘>10 $(function(){11   $(#aDayboxDiv).daybox({12                     weeks: [{ text: , value: 2 }, { text: , value: 3 }, { text: , value: 4 },13                             { text: , value: 5 }, { text: , value: 6 }, { text: , value: 7 },14                             { text: , value: 1 }]15                     });16   $(#aDayboxDiv).daybox(setValue, 0, 2);17 });18 </script>19 </body>20 </html>

 运行结果:

一个进行枚举选择的jquery插件(仿easyui风格)