最新文章專(zhuān)題視頻專(zhuān)題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專(zhuān)題1關(guān)鍵字專(zhuān)題50關(guān)鍵字專(zhuān)題500關(guān)鍵字專(zhuān)題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專(zhuān)題關(guān)鍵字專(zhuān)題tag2tag3文章專(zhuān)題文章專(zhuān)題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專(zhuān)題3
問(wèn)答文章1 問(wèn)答文章501 問(wèn)答文章1001 問(wèn)答文章1501 問(wèn)答文章2001 問(wèn)答文章2501 問(wèn)答文章3001 問(wèn)答文章3501 問(wèn)答文章4001 問(wèn)答文章4501 問(wèn)答文章5001 問(wèn)答文章5501 問(wèn)答文章6001 問(wèn)答文章6501 問(wèn)答文章7001 問(wèn)答文章7501 問(wèn)答文章8001 問(wèn)答文章8501 問(wèn)答文章9001 問(wèn)答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

JQuerydatepicker用法詳解_jquery

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 21:47:54
文檔

JQuerydatepicker用法詳解_jquery

JQuerydatepicker用法詳解_jquery:jQuery UI很強(qiáng)大,其中的日期選擇插件Datepicker是一個(gè)配置靈活的插件,我們可以自定義其展示方式,包括日期格式、語(yǔ)言、限制選擇日期范圍、添加相關(guān)按鈕以及其它導(dǎo)航等。 官方地址:http://docs.jquery.com/UI/Datepicker,官方示例: htt
推薦度:
導(dǎo)讀JQuerydatepicker用法詳解_jquery:jQuery UI很強(qiáng)大,其中的日期選擇插件Datepicker是一個(gè)配置靈活的插件,我們可以自定義其展示方式,包括日期格式、語(yǔ)言、限制選擇日期范圍、添加相關(guān)按鈕以及其它導(dǎo)航等。 官方地址:http://docs.jquery.com/UI/Datepicker,官方示例: htt

jQuery UI很強(qiáng)大,其中的日期選擇插件Datepicker是一個(gè)配置靈活的插件,我們可以自定義其展示方式,包括日期格式、語(yǔ)言、限制選擇日期范圍、添加相關(guān)按鈕以及其它導(dǎo)航等。

官方地址:http://docs.jquery.com/UI/Datepicker,官方示例: http://jqueryui.com/demos/datepicker/。

一個(gè)不錯(cuò)的地址,用來(lái)DIY jQuery UI界面效果的站點(diǎn)http://jqueryui.com/themeroller/

DatePicker基本使用方法:


如果設(shè)置為true,則所有文字是從右自左。
初始:$('.selector').datepicker({ isRTL: true });
獲?。簐ar isRTL = $('.selector').datepicker('option', 'isRTL');
設(shè)置:$('.selector').datepicker('option', 'isRTL', true);

maxDate : Date, Number, String : null

設(shè)置一個(gè)最大的可選日期。可以是Date對(duì)象,或者是數(shù)字(從今天算起,例如+7),或者有效的字符串('y'代表年, 'm'代表月, 'w'代表周, 'd'代表日, 例如:'+1m +7d')。
初始:$('.selector').datepicker({ maxDate: '+1m +1w' });
獲?。簐ar maxDate = $('.selector').datepicker('option', 'maxDate');
設(shè)置:$('.selector').datepicker('option', 'maxDate', '+1m +1w');
$('.selector').datepicker('option', 'maxDate', '12/25/2012');

minDate : Date, Number, String : null

設(shè)置一個(gè)最小的可選日期??梢允荄ate對(duì)象,或者是數(shù)字(從今天算起,例如+7),或者有效的字符串('y'代表年, 'm'代表月, 'w'代表周, 'd'代表日, 例如:'+1m +7d')。
初始:$('.selector').datepicker({ minDate: new Date(2007, 1 - 1, 1) });
獲取:var minDate = $('.selector').datepicker('option', 'minDate');
設(shè)置:$('.selector').datepicker('option', 'minDate', new Date(2007, 1 - 1, 1));

$('.selector').datepicker('option', 'minDate', '12/25/2012');
monthNames : Array : ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']

設(shè)置所有月份的名稱(chēng)。
初始:$('.selector').datepicker({monthNames:['Januar','Februar','Marts','April','Maj','Juni','Juli','August','September','Oktober','November','December']});
獲?。簐ar monthNames = $('.selector').datepicker('option', 'monthNames');
設(shè)置:$('.selector').datepicker('option', 'monthNames', ['Januar','Februar','Marts','April','Maj','Juni','Juli','August','September','Oktober','November','December']);
monthNamesShort : Array : ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']

設(shè)置所有月份的縮寫(xiě)。

初始:$('.selector').datepicker({monthNamesShort:['Jan','Feb','Mar','Apr','Maj','Jun','Jul','Aug','Sep','Okt','Nov','Dec']});
獲?。簐ar monthNamesShort = $('.selector').datepicker('option', 'monthNamesShort');
設(shè)置:$('.selector').datepicker('option', 'monthNamesShort', ['Jan','Feb','Mar','Apr','Maj','Jun','Jul','Aug','Sep','Okt','Nov','Dec']);

navigationAsDateFormat : Boolean : false

如果設(shè)置為true,則formatDate函數(shù)將應(yīng)用到 prevText,nextText和currentText的值中顯示,例如顯示為月份名稱(chēng)。
初始:$('.selector').datepicker({ navigationAsDateFormat: true });
獲取:var navigationAsDateFormat = $('.selector').datepicker('option', 'navigationAsDateFormat');
設(shè)置:$('.selector').datepicker('option', 'navigationAsDateFormat', true);

nextText : String : 'Next'

設(shè)置“下個(gè)月”鏈接的顯示文字。
初始:$('.selector').datepicker({ nextText: 'Later' });
獲?。簐ar nextText = $('.selector').datepicker('option', 'nextText');
設(shè)置:$('.selector').datepicker('option', 'nextText', 'Later');

numberOfMonths : Number, Array : 1

設(shè)置一次要顯示多少個(gè)月份。如果為整數(shù)則是顯示月份的數(shù)量,如果是數(shù)組,則是顯示的行與列的數(shù)量。
初始:$('.selector').datepicker({ numberOfMonths: [2, 3] });
獲?。簐ar numberOfMonths = $('.selector').datepicker('option', 'numberOfMonths');
設(shè)置:$('.selector').datepicker('option', 'numberOfMonths', [2, 3]);

prevText : String : 'Prev'

設(shè)置“上個(gè)月”鏈接的顯示文字。
初始:$('.selector').datepicker({ prevText: 'Earlier' });
獲?。簐ar prevText = $('.selector').datepicker('option', 'prevText');
設(shè)置:$('.selector').datepicker('option', 'prevText', 'Earlier');

shortYearCutoff : String, Number : '+10'

設(shè)置截止年份的值。如果是(0-99)的數(shù)字則以當(dāng)前年份開(kāi)始算起,如果為字符串,則相應(yīng)的轉(zhuǎn)為數(shù)字后再與當(dāng)前年份相加。當(dāng)超過(guò)截止年份時(shí),則被認(rèn)為是上個(gè)世紀(jì)。
初始:$('.selector').datepicker({ shortYearCutoff: 50 });
獲?。簐ar shortYearCutoff = $('.selector').datepicker('option', 'shortYearCutoff');
設(shè)置:$('.selector').datepicker('option', 'shortYearCutoff', 50);

showAnim : String : 'show'

設(shè)置顯示、隱藏日期插件的動(dòng)畫(huà)的名稱(chēng)。
初始:$('.selector').datepicker({ showAnim: 'fold' });
獲?。簐ar showAnim = $('.selector').datepicker('option', 'showAnim');
設(shè)置:$('.selector').datepicker('option', 'showAnim', 'fold');

showButtonPanel : Boolean : false

設(shè)置是否在面板上顯示相關(guān)的按鈕。
初始:$('.selector').datepicker({ showButtonPanel: true });
獲取:var showButtonPanel = $('.selector').datepicker('option', 'showButtonPanel');
設(shè)置:$('.selector').datepicker('option', 'showButtonPanel', true);

showCurrentAtPos : Number : 0

設(shè)置當(dāng)多月份顯示的情況下,當(dāng)前月份顯示的位置。自頂部/左邊開(kāi)始第x位。
初始:$('.selector').datepicker({ showCurrentAtPos: 3 });
獲?。簐ar showCurrentAtPos = $('.selector').datepicker('option', 'showCurrentAtPos');
設(shè)置:$('.selector').datepicker('option', 'showCurrentAtPos', 3);

showMonthAfterYear : Boolean : false

是否在面板的頭部年份后面顯示月份。
初始:$('.selector').datepicker({ showMonthAfterYear: true });
獲取:var showMonthAfterYear = $('.selector').datepicker('option', 'showMonthAfterYear');
設(shè)置:$('.selector').datepicker('option', 'showMonthAfterYear', true);

showOn : String : 'focus'

設(shè)置什么事件觸發(fā)顯示日期插件的面板,可選值:focus, button, both
初始:$('.selector').datepicker({ showOn: 'both' });
獲?。簐ar showOn = $('.selector').datepicker('option', 'showOn');
設(shè)置:$('.selector').datepicker('option', 'showOn', 'both');

showOptions : Options : {}

如果使用showAnim來(lái)顯示動(dòng)畫(huà)效果的話,可以通過(guò)此參數(shù)來(lái)增加一些附加的參數(shù)設(shè)置。
初始:$('.selector').datepicker({ showOptions: {direction: 'up' });
獲取:var showOptions = $('.selector').datepicker('option', 'showOptions');
設(shè)置:$('.selector').datepicker('option', 'showOptions', {direction: 'up');

showOtherMonths : Boolean : false

是否在當(dāng)前面板顯示上、下兩個(gè)月的一些日期數(shù)(不可選)。
初始:$('.selector').datepicker({ showOtherMonths: true });
獲?。簐ar showOtherMonths = $('.selector').datepicker('option', 'showOtherMonths');
設(shè)置:$('.selector').datepicker('option', 'showOtherMonths', true);

stepMonths : Number : 1

當(dāng)點(diǎn)擊上/下一月時(shí),一次翻幾個(gè)月。
初始:$('.selector').datepicker({ stepMonths: 3 });
獲?。簐ar stepMonths = $('.selector').datepicker('option', 'stepMonths');
設(shè)置:$('.selector').datepicker('option', 'stepMonths', 3);

yearRange : String : '-10:+10'

控制年份的下拉列表中顯示的年份數(shù)量,可以是相對(duì)當(dāng)前年(-nn:+nn),也可以是絕對(duì)值 (-nnnn:+nnnn)
初始:$('.selector').datepicker({ yearRange: '2000:2010' });
獲取:var yearRange = $('.selector').datepicker('option', 'yearRange');
設(shè)置:$('.selector').datepicker('option', 'yearRange', '2000:2010');

beforeShow : function(input)

在日期控件顯示面板之前,觸發(fā)此事件,并返回當(dāng)前觸發(fā)事件的控件的實(shí)例對(duì)象。
初始:$('.selector').datepicker({ beforeShow: function(input) { ... } });

beforeShowDay : function(date)

在日期控件顯示面板之前,每個(gè)面板上的日期綁定時(shí)都觸發(fā)此事件,參數(shù)為觸發(fā)事件的日期。調(diào)用函數(shù)后,必須返回一個(gè)數(shù)組:[0]此日期是否可選(true/false),[1]此日期的CSS樣式名稱(chēng)(""表示默認(rèn)),[2]當(dāng)鼠標(biāo)移至上面出現(xiàn)一段提示的內(nèi)容。
初始:$('.selector').datepicker({ beforeShowDay: function(date) { ... } });

onChangeMonthYear : function(year, month, inst)

當(dāng)年份或月份改變時(shí)觸發(fā)此事件,參數(shù)為改變后的年份月份和當(dāng)前日期插件的實(shí)例。
初始:$('.selector').datepicker({ onChangeMonthYear: function(year, month, inst) { ... } });

onClose : function(dateText, inst)

當(dāng)日期面板關(guān)閉后觸發(fā)此事件(無(wú)論是否有選擇日期),參數(shù)為選擇的日期和當(dāng)前日期插件的實(shí)例。
初始:$('.selector').datepicker({ onClose: function(dateText, inst) { ... } });

onSelect : function(dateText, inst)

當(dāng)在日期面板選中一個(gè)日期后觸發(fā)此事件,參數(shù)為選擇的日期和當(dāng)前日期插件的實(shí)例。
$('.selector').datepicker({ onSelect: function(dateText, inst) { ... } });

以上內(nèi)容給大家介紹了JQuery datepicker 用法,希望大家喜歡。

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

JQuerydatepicker用法詳解_jquery

JQuerydatepicker用法詳解_jquery:jQuery UI很強(qiáng)大,其中的日期選擇插件Datepicker是一個(gè)配置靈活的插件,我們可以自定義其展示方式,包括日期格式、語(yǔ)言、限制選擇日期范圍、添加相關(guān)按鈕以及其它導(dǎo)航等。 官方地址:http://docs.jquery.com/UI/Datepicker,官方示例: htt
推薦度:
標(biāo)簽: 使用方法 詳解 dat
  • 熱門(mén)焦點(diǎn)

最新推薦

猜你喜歡

熱門(mén)推薦

專(zhuān)題
Top