解析dateBox()中的时间,或消除datebox中的时间

时间:2012-09-19 08:41:26

标签: javascript google-apps-script

有没有办法在dateBox()中解析时间,或者更好地将它们全部消除?我希望有人能够使用dateBox()来选择日期,但是想要摆脱时间并使用我创建的另一个函数。

感谢

1 个答案:

答案 0 :(得分:0)

这样做的一个简单方法是:

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...

您可以查看this example sheet我使用它来组合来自2列(日期和时间)的数据来创建完整的日期对象