$(function () {
$.datepicker.setDefaults({
showOn: "both",
buttonImageOnly: true,
buttonImage: "img/calendar.gif",
buttonText: "日期"
});
$("#startTime").datepicker({ dateFormat: "yy/mm/dd", appendText: " [ 2013/9/1 ]" });
$("#endTime").datepicker({ dateFormat: "yy/mm/dd", appendText: " [ 2013/9/30 ]" });
});