1
可能性の重複:javascript.Iを使用して、2つの日付の差を取得する方法
How do I get the difference between two Dates in JavaScript?2つの日付の違いを取得するにはどうすればよいですか?
2 dates.Hereが私のコード
function calculateDifference() {
var startDate = document.getElementById("MainContent_txtOStartDate").value;
var endDate = document.getElementById("MainContent_txtOEndDate").value;
return DateDiff(startDate, endDate);
}
function DateDiff(startDate, endDate) {
var a = Date.parse(startDate) - Date.parse(endDate);
alert(a);
}
であるそれらの間の正確な日差を必要とします
提案がありますか?
大変新しい質問です!かなり私はそれを見たことがないと確信しています! – talnicolas
http://stackoverflow.com/questions/41948/how-do-i-get-the-difference-between-two-dates-in-javascript –
ここで私の答えをチェックhttp://stackoverflow.com/questions/6829061/need-a-javascriptと比較する日付 – Dotnet