有没有办法解析 dateBox() 中的时间,或者更好地把它全部消除?我希望有人能够使用 dateBox() 仅选择日期,但想摆脱时间并使用我为时间创建的另一个函数。
谢谢
有没有办法解析 dateBox() 中的时间,或者更好地把它全部消除?我希望有人能够使用 dateBox() 仅选择日期,但想摆脱时间并使用我为时间创建的另一个函数。
谢谢
一种简单的方法是这样的:
var date = new Date(e.parameter.start);// convert the string to a full date object (with time value) (the date widget is named 'start' in this example)
var dateOnly = date.setHours(0,0,0,0); // set time to '0' (hours,min,sec,millisec)or use the hours and minutes you get from elsewhere...
您可以查看此示例表,我使用它来组合来自 2 列(日期和时间)的数据以创建完整的日期对象