datepicker怎么在bootstrap中使用?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
創(chuàng)新互聯(lián)從2013年開始,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站制作、網(wǎng)站建設(shè)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元建始做網(wǎng)站,已為上家服務(wù),為建始各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:13518219792首先
引入相應(yīng)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)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。
文章名稱:datepicker怎么在bootstrap中使用-創(chuàng)新互聯(lián)
文章出自:http://m.rwnh.cn/article22/hcpcc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、移動(dòng)網(wǎng)站建設(shè)、微信小程序、虛擬主機(jī)、品牌網(wǎng)站設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容