datepicker怎么在bootstrap中使用?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
創(chuàng)新互聯(lián)從2013年開始,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務公司,擁有項目網(wǎng)站制作、網(wǎng)站建設網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元建始做網(wǎng)站,已為上家服務,為建始各地企業(yè)和個人服務,聯(lián)系電話:13518219792首先
引入相應css和js:
<link rel="stylesheet" th:href="@{/assets/css/datepicker.css}" rel="external nofollow" /> <script th:src="@{/assets/js/date-time/bootstrap-datepicker.js}"></script>
然后html代碼裝載控件
<div class="input-group"> <input class="form-control date-picker" id="endTime" data-date-end-date="0m" type="text" placeholder="選擇年月"/> <span class="input-group-addon"> <i class="fa fa-calendar bigger-110"></i> </span> </div>
初始化控件:
$('#endTime').datepicker({ format: 'yyyy-mm', startView: 1, maxViewMode: 1,minViewMode:1, autoclose :true })
現(xiàn)在可以看效果了:
選擇日期后觸發(fā)事件:
$('#endTime').datepicker({ format: 'yyyy-mm', startView: 1, maxViewMode: 1,minViewMode:1, autoclose :true }).on("changeMonth", function(e) { var date_=e.date; var year_str = date_.getFullYear(); var month_str = date_.getMonth()+1; if(month_str<10){ month_str="0"+month_str; } var endMonth=year_str+"-"+month_str; getLitDirection(endMonth); getLitSaleTop(endMonth); getLitViewTop(endMonth); getLitErrorRecovery(endMonth); var month_value=year_str+"年"+(date_.getMonth()+1)+"月"; $("#end_Time").html(month_value); $("#split1").show(); $("#split2").show(); }).next().on(ace.click_event, function(){ $(this).prev().focus(); });
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)的支持。
文章名稱:datepicker怎么在bootstrap中使用-創(chuàng)新互聯(lián)
文章出自:http://aaarwkj.com/article22/hcpcc.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、網(wǎng)站設計、移動網(wǎng)站建設、微信小程序、虛擬主機、品牌網(wǎng)站設計
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容