您好,登錄后才能下訂單哦!
這篇文章主要介紹“Jquery ui datepicker如何設(shè)置日期范圍”,在日常操作中,相信很多人在Jquery ui datepicker如何設(shè)置日期范圍問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Jquery ui datepicker如何設(shè)置日期范圍”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
首先去官網(wǎng)上下載jquery ui 包 我用的是1.92版本
下載好了之后
引入:
<link href="jquery-ui/1.9.2/css/smoothness/jquery-ui-1.9.2.custom.min.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery-ui/1.9.2/js/jquery-ui-1.9.2.custom.js"></script> <script type="text/javascript" src="jquery-ui/1.9.2/datepicker-init.js"></script> <script type="text/javascript"> $(function(){ var dates = $("#startDate,#endDate"); var option; var targetDate; var optionEnd; var targetDateEnd; dates.datepicker({ showButtonPanel:false, onSelect: function(selectedDate){ if(this.id == "startDate"){ // 如果是選擇了開始時間(startDate)設(shè)置結(jié)束時間(endDate)的最小時間和最大時間 option = "minDate"; //最小時間 var selectedTime = getTimeByDateStr(selectedDate); var minTime = selectedTime; //最小時間 為開第一個日歷控制選擇的時間 targetDate = new Date(minTime); //設(shè)置結(jié)束時間的最大時間 optionEnd = "maxDate"; //因為只能做三天內(nèi)的查詢 所以是間隔2天 當前時間加上2*24*60*60*1000 targetDateEnd = new Date(minTime+2*24*60*60*1000); }else{ // 如果是選擇了結(jié)束時間(endDate)設(shè)置開始時間(startDate)的最小時間和最大時間 option = "maxDate"; //最大時間 var selectedTime = getTimeByDateStr(selectedDate); var maxTime = selectedTime; targetDate = new Date(maxTime); //設(shè)置最小時間 optionEnd = "minDate"; targetDateEnd = new Date(maxTime-2*24*60*60*1000); } dates.not(this).datepicker("option", option, targetDate); dates.not(this).datepicker("option", optionEnd, targetDateEnd); } }); // 檢查起始時間不能超過3天 function checkTimeInOneMonth(startDate, endDate){ var startTime = getTimeByDateStr(startDate); var endTime = getTimeByDateStr(endDate); if((endTime - startTime) > 2*24*60*60*1000){ return false; } return true; } //根據(jù)日期字符串取得其時間 function getTimeByDateStr(dateStr){ var year = parseInt(dateStr.substring(0,4)); var month = parseInt(dateStr.substring(5,7),10)-1; var day = parseInt(dateStr.substring(8,10),10); return new Date(year, month, day).getTime(); } </script> <input type="text" value="" name="startDate" readonly="true" id="startDate" title="日期范圍不能大于3天"/><input type="text" value="" name="endDate" readonly="true" id="endDate" title="日期范圍不能大于3天"/>
到此,關(guān)于“Jquery ui datepicker如何設(shè)置日期范圍”的學習就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。