猿问

尝试通过 air-date-picker 设置日期

我正在尝试添加日期选择器,但我面临 Air DatePicker 以英语和另一种语言显示日期的问题,我猜是俄语 

//Here it is code I am using for this 

<input required type="text" class="form-control datepicker-here" id="textSchorOfficeOrderDate" autocomplete="off" data-language='en' data-date-format="yyyy-mm-dd">

//And Function for Date

$("#textSchorOfficeOrderDate").datepicker({

            autoClose: true,

            clearButton: true,

            onSelect: function (formattedDate, date, inst) {

                self.currentDate = date;

//It does't effct if I comment or not below line

                self.onChangeMonthAndYear();

            }

        })

我只想要英语日期


largeQ
浏览 252回答 1
1回答

阿晨1998

在您的脚本中添加语言选项。我希望它对您有用。$("#textSchorOfficeOrderDate").datepicker({&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; autoClose: true,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; clearButton: true,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; language: 'en', //add this line&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; onSelect: function (formattedDate, date, inst) {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self.currentDate = date;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //It does't effct if I comment or not below line&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self.onChangeMonthAndYear();&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; &nbsp; })这是参考链接:http : //t1m0n.name/air-datepicker/docs/
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答