<script type="text/javascript">
$(document).ready(function() {
$('#checkin').Zebra_DatePicker({
direction: true,
show_icon:false,
format: 'M d, Y',
show_select_today:false,
pair: $('#checkout')
});
$('#checkout').Zebra_DatePicker({
direction: 1,
show_icon:false,
format: 'M d, Y'
});
});
</script>
<script>
$(function() {
$("#checkin").Zebra_datepicker();
$('.Zebra_Datepicker dp_visible').addClass('notranslate');
});
</script>
我在我的网站上使用Zebra Datepicker但是当我在我的网站上使用谷歌翻译API谷歌翻译挂起我的Datepicker并继续翻译需要帮助.... 我试图使用上面的函数向ui-datepicker添加没有翻译类,但没有运气
答案 0 :(得分:0)
$(function() {
$('.Zebra_DatePicker').addClass('notranslate');
});
试试这个!