可以通过日历的Onselect事件来实现功能,参考API:http://api.jqueryui.com/datepicker/
我的:
$("#date1").datepicker({
numberOfMonths:2,
inline:false,
buttonImageonly:true,
onSelect:function(dateText,inst){
$("#date2").val(dateText);
}
});
$(document).ready(function(){
//为两者设置开始结束关系
$("#start").datepicker({
onSelect:function(dateText,inst){
$("#end").datepicker("option","minDate",dateText);
}
}).datepicker("option","gotuCurrent","true");
$("#end").datepicker({
onSelect:function(dateText,inst){
$("#start").datepicker("option","maxDate",dateText);
}
});
});
我是这样写的,但是不会具体操作后面的日期了,比如要给date2的日期设为date1的日期加30天。API文档看了,但是没搞出来。。
@ReBack2010: 找个Js算日历的代码