0

dateBox()で時間を解析する方法はありますか、それともすべて一緒に削除する方法はありますか?誰かがdateBox()を使用して日付のみを選択できるようにしたいのですが、時刻を削除して、その時刻用に作成した別の関数を使用したいと思います。

ありがとう

4

1 に答える 1

0

これを行う簡単な方法の 1 つは、次のようなものです。

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 つの列 (日付と時刻) のデータを結合し、完全な日付オブジェクトを作成します。

于 2012-09-19T11:56:17.073 に答える