In your example, simply switch the format in line 2 and 3:
$(function(){
$("#to").datepicker({ dateFormat: 'yy#mm.dd' });
$("#from").datepicker({ dateFormat: 'yy.mm.dd' }).bind("change",function(){
var minValue = $(this).val();
minValue = $.datepicker.parseDate("yy-mm-dd", minValue);
minValue.setDate(minValue.getDate()+1);
$("#to").datepicker( "option", "minDate", minValue );
})
});
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…