检查日期是否仅录在日期/时间变量中

  • Published by Viedoc System 2020-08-18
  • Print

如果仅填写日期,则日期和时间的变量将返回时间00:00。您可能需要检查该时间,以确保中心用户也不会错过输入时间。

为此,您可以将以下代码用作日期和时间变量的逻辑检查。 将下面的ItemID替换为时间和日期变量的ID:

var datetocheck = new Date(ItemID);

if (datetocheck != null && datetocheck.getHours() == 0 && datetocheck.getMinutes() == 0)

return false;

return true;