$('#box').datebox({
panelWidth:300,
panelHeight:300,
currentText:'今天',
closeTetx:'关',
okText:'ok',
//buttons:buttons,
formatter:function(date){
return date.getFullYear()+'/'+date.getMonth()+1+'/'+date.getDate();
},
});
$('#box').datebox('setValue','2015-5-1');