2013-06-05 81 views

回答

11

add notranslate class jquery.ui.datepicker.js with class ui-helper-clearfix

+0

同樣在谷歌網站上有描述https://cloud.google.com/translate/v2/faq#technical –

+0

同樣的解決方案也出現在這裏.... http://stackoverflow.com/questions/17130370/stopping-google-翻譯 - 從 - 翻譯 - 日期選擇器 –

0

首先你需要在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將阻止您的日曆進行翻譯。

2

,當你不能/不想改變jQuery UI的日期選擇器的代碼,你也可以使用beforeShow回調添加notranslate類:

beforeShow: function(input, inst) { 
    inst.dpDiv.addClass('notranslate'); 
} 

與版本測試1.12.0

相關問題