首页 > 语言 > JavaScript > 正文

Jquery日期选择datepicker插件用法实例分析

2024-05-06 16:21:48
字体:
来源:转载
供稿:网友

这篇文章主要介绍了Jquery日期选择datepicker插件用法,实例分析了datepicker插件的相关使用技巧,需要的朋友可以参考下

本文实例讲述了Jquery日期选择datepicker插件用法。分享给大家供大家参考。具体如下:

1、首先将Jquery中的datepicker插件中的相关属性值改成中文的:

 

 
  1. $.datepicker.regional['zh-CN'] = {  
  2. clearText: '清除',  
  3. clearStatus: '清除已选日期',  
  4. closeText: '关闭',  
  5. closeStatus: '不改变当前选择',  
  6. prevText: '<上月',  
  7. prevStatus: '显示上月',  
  8. prevBigText: '<<',  
  9. prevBigStatus: '显示上一年',  
  10. nextText: '下月>',  
  11. nextStatus: '显示下月',  
  12. nextBigText: '>>',  
  13. nextBigStatus: '显示下一年',  
  14. currentText: '今天',  
  15. currentStatus: '显示本月',  
  16. monthNames: ['一月','二月','三月','四月','五月','六月''七月','八月','九月','十月','十一月','十二月'],  
  17. monthNamesShort: ['一','二','三','四','五','六''七','八','九','十','十一','十二'],  
  18. monthStatus: '选择月份',  
  19. yearStatus: '选择年份',  
  20. weekHeader: '周',  
  21. weekStatus: '年内周次',  
  22. dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'],  
  23. dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'],  
  24. dayNamesMin: ['日','一','二','三','四','五','六'],  
  25. dayStatus: '设置 DD 为一周起始',  
  26. dateStatus: '选择 m月 d日, DD',  
  27. dateFormat: 'yy-mm-dd',  
  28. firstDay: 1,  
  29. initStatus: '请选择日期',  
  30. isRTL: false}; 
  31. $.datepicker.setDefaults($.datepicker.regional['zh-CN']);  

2、html页面中有两个日期输入框,分别为起始日期和结束日期:

 

 
  1. <label for="start-datepicker">起始日期:</label> <input type="text" class="datepicker test-image-datepicker" id="start-datepicker" size="15" /> 
  2. <label for="end-datepicker">结束日期:</label> <input type="text" class="datepicker test-image-datepicker" id="end-datepicker" size="15" /> 

3、调用修改后的datepicker插件:

 

 
  1. var $start_date_value = "2012年1月1日"// TODO 改成可以配置的 
  2. var $end_date_value = new Date(); 
  3. // When document has loaded, initialize pagination and form  
  4. $(document).ready(function(){  
  5. $(".imagezz").click($test_image_check_box_click); 
  6. $( ".test-image-datepicker" ).datepicker({ 
  7. changeMonth: true
  8. changeYear: true
  9. showOn: "both"
  10. buttonImage: "images/calendar.gif"
  11. buttonImageOnly: true
  12. showButtonPanel: true
  13. onSelect: function(dateText, inst){ 
  14. if ($(this).attr("id") == "start-datepicker") { 
  15. $start_date_value = dateText; 
  16. if ($(this).attr("id") == "end-datepicker") { 
  17. $end_date_value = dateText; 
  18. //下面可以写一些根据日期变化引起页面相关部分修改的函数 
  19. //...... 
  20. }); 
  21. $(".test-image-datepicker").datepicker("option""dateFormat""yy年mm月dd日"); 
  22. $('.test-image-datepicker').attr("readonly","readonly"); 
  23. $("#start-datepicker").datepicker("setDate",$start_date_value); 
  24. $("#end-datepicker").datepicker("setDate",$end_date_value); 

datepicker其余选项及方法详见:http://api.jqueryui.com/datepicker/

希望本文所述对大家的jQuery程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选