本文介绍了如何计算两个日期之间的差异的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有两个三个文本框
1.应该从日期开始显示
2.此显示至今
3.此显示号码
计算起始日期和起始日期之间的天数

i have two three textboxes
1.should display from date
2.this display todate
3.this display the number
count no.of days between fromdate and todate
how it is possible

推荐答案

<script type="text/javascript">
    function getnoofdays(){
                var oneDay = 24*60*60*1000; // hours*minutes*seconds*milliseconds

                var firstDate = new Date(2008,01,12);
                var secondDate = new Date(2008,01,22);

                var diffDays = Math.round(Math.abs((firstDate.getTime() - secondDate.getTime())/(oneDay)));
                Textbox3.Value=diffDays;
               // alert(diffDays);
                }
    </script>




如果这是您的解决方案,请标记为答案


谢谢
ashish




mark it answer if this is your solution


Thanks
ashish


这篇关于如何计算两个日期之间的差异的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 20:12