jquery datepicker 中文下載
最近想在自己的網(wǎng)站上添加一個日期選擇器,但是發(fā)現(xiàn)jquery的原始datepicker插件只能顯示英文的月份和星期幾,很不方便,于是我對jquery datepicker中文進(jìn)行了下載和安裝。
首先,我進(jìn)入jQuery UI官網(wǎng),找到了jQuery UI Datepicker的下載頁面,從中下載了所需的中文語言包,得到了一個名為jquery-ui-i18n.js的文件。
然后,我使用pre標(biāo)簽將代碼顯示出來,方便其他有需要的開發(fā)者使用和參考。
https://code.jquery.com/ui/1.12.1/jquery-ui.js https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css https://code.jquery.com/ui/1.12.1/themes/base/images/ui-icons_444444_256x240.png https://code.jquery.com/ui/1.12.1/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png https://code.jquery.com/ui/1.12.1/themes/base/images/ui-bg_flat_75_ffffff_40x100.png https://code.jquery.com/ui/1.12.1/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png https://code.jquery.com/ui/1.12.1/themes/base/images/ui-bg_glass_65_ffffff_1x400.png https://code.jquery.com/ui/1.12.1/themes/base/images/ui-bg_glass_75_dadada_1x400.png https://code.jquery.com/ui/1.12.1/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png https://code.jquery.com/ui/1.12.1/themes/base/images/ui-icons_222222_256x240.png https://code.jquery.com/ui/1.12.1/themes/base/images/ui-icons_888888_256x240.png https://code.jquery.com/ui/1.12.1/themes/base/images/ui-icons_cd0a0a_256x240.png https://code.jquery.com/ui/1.12.1/themes/base/images/ui-icons_ffffff_256x240.png https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.min.css https://code.jquery.com/ui/1.12.1/jquery-ui.js https://code.jquery.com/ui/1.12.1/jquery-ui.min.js https://code.jquery.com/ui/1.12.1/i18n/jquery-ui-i18n.js最后,我在自己的網(wǎng)站上引入了下載并改名為“jquery-ui-i18n-chinese.js”的中文語言包,并在進(jìn)行datepicker初始化時添加了語言參數(shù),成功地實現(xiàn)了中文選擇器。
以上就是使用jquery datepicker中文下載的過程,希望對其他開發(fā)者有所幫助。