我正在使用日期選擇器作爲簽入日期。日期選擇器在使用谷歌翻譯器時更改日期
我在我的網站上使用Google翻譯器。
因此,當我將語言從英語更改爲中文或其他語言時,日期選取器值變爲NaN/NaN/NaN
。日期選擇器格式是mm/dd/yyyy
。
我正在使用日期選擇器作爲簽入日期。日期選擇器在使用谷歌翻譯器時更改日期
我在我的網站上使用Google翻譯器。
因此,當我將語言從英語更改爲中文或其他語言時,日期選取器值變爲NaN/NaN/NaN
。日期選擇器格式是mm/dd/yyyy
。
add notranslate
class jquery.ui.datepicker.js
with class ui-helper-clearfix
。
首先你需要在jQuery UI的JS搜索該
ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all
,或者你可以搜索整個項目,並且比
ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all notranslate
更換所有發生。
關鍵字notranslate
將阻止您的日曆進行翻譯。
,當你不能/不想改變jQuery UI的日期選擇器的代碼,你也可以使用beforeShow回調添加notranslate
類:
beforeShow: function(input, inst) {
inst.dpDiv.addClass('notranslate');
}
與版本測試1.12.0
同樣在谷歌網站上有描述https://cloud.google.com/translate/v2/faq#technical –
同樣的解決方案也出現在這裏.... http://stackoverflow.com/questions/17130370/stopping-google-翻譯 - 從 - 翻譯 - 日期選擇器 –