验证时间长度为00:00的日期和时间字段

时间:2018-02-28 12:18:39

标签: javascript sharepoint

我有一个表单,用户可以在其中选择日期和时间。大多数用户并不关心,也没有指定时间因此导致时间00:00

如果有一个简短的JavaScript检查

IF **UntilDate** is TIME == 00:00 THEN alert user "specify the date" 
ELSE do not allow to submit the form

我尝试了以下内容:

<script type="text/javascript">
 $(document).ready(function(){
    // Here i added code for other functionalities
 });
 //PreSaveAction code to validate
  function PreSaveAction() 
{
     var checkHrs = $('select[class="nf-datepicker-select nf-hours"]').val();
     var checkMin = $('select[class="nf-datepicker-select"]').val();

    if(checkHrs == 00 || checkMin == 00)
    {
       alert('Please specify the time');
       return false;
    }
    else
        {
         return true;
        }
    }
}
 </script>

我希望实现java功能的HTML。

enter image description here

0 个答案:

没有答案