JavaScript DHTML/Mochkit/Date

Материал из Web эксперт
Перейти к: навигация, поиск

Compare two date values

 
<!--
MochiKit is dual-licensed software.  It is available under the terms of the
MIT License, or the Academic Free License version 2.1.  The full text of
each license is included below.
-->
<!-- Code revised from MochiKit demo code -->
<html>
<head>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Base.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Iter.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/DOM.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Style.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Logging.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/DateTime.js"></script>
</head>
<body>
<pre id="test">
<script type="text/javascript">
    alert(compare(new Date("February 3, 2005"), new Date(2005, 1, 3))+ " dates compare eq");
    alert(compare(new Date("February 3, 2005"), new Date(2005, 2, 3))+ " dates compare lt");
    alert(compare(new Date("February 3, 2005"), new Date(2005, 0, 3))+ " dates compare gt");
</script>
</pre>
</body>
</html>



Convert iso date to American date

 
<!--
MochiKit is dual-licensed software.  It is available under the terms of the
MIT License, or the Academic Free License version 2.1.  The full text of
each license is included below.
-->
<!-- Code revised from MochiKit demo code -->
<html>
<head>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Base.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Iter.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/DOM.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Style.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Logging.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/DateTime.js"></script>
</head>
<body>
<pre id="test">
<script type="text/javascript">
    var testDate = isoDate("2005-2-3");
    alert(americanDate("2/3/2005"));
</script>
</pre>
</body>
</html>



Convert to iso timestamp

 
<!--
MochiKit is dual-licensed software.  It is available under the terms of the
MIT License, or the Academic Free License version 2.1.  The full text of
each license is included below.
-->
<!-- Code revised from MochiKit demo code -->
<html>
<head>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Base.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Iter.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/DOM.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Style.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Logging.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/DateTime.js"></script>
</head>
<body>
<pre id="test">
<script type="text/javascript">
    var testTimestamp = isoTimestamp("2005-2-3 22:01:03");
    alert(compare(testTimestamp, new Date(2005,1,3,22,1,3)) + " isoTimestamp eq");
    alert(compare(testTimestamp, isoTimestamp("2005-2-3T22:01:03")) + " isoTimestamp (real ISO) eq");
    alert(compare(toISOTimestamp(testTimestamp), "2005-02-03 22:01:03") + " toISOTimestamp eq");
</script>
</pre>
</body>
</html>



iso date format: 2005-06-08

 
<!--
MochiKit is dual-licensed software.  It is available under the terms of the
MIT License, or the Academic Free License version 2.1.  The full text of
each license is included below.
-->
<!-- Code revised from MochiKit demo code -->
<html>
<head>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Base.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Iter.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/DOM.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Style.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Logging.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/DateTime.js"></script>
</head>
<body>
<pre id="test">
<script type="text/javascript">
    var testDate = isoDate("2005-06-08");
    alert(toISODate(testDate));
  var testDate = isoDate("0500-12-12");
  alert(toISODate(testDate));
</script>
</pre>
</body>
</html>



toAmericanDate function

 
<!--
MochiKit is dual-licensed software.  It is available under the terms of the
MIT License, or the Academic Free License version 2.1.  The full text of
each license is included below.
-->
<!-- Code revised from MochiKit demo code -->
<html>
<head>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Base.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Iter.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/DOM.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Style.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Logging.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/DateTime.js"></script>
</head>
<body>
<pre id="test">
<script type="text/javascript">
    var testDate = isoDate("2005-2-3");
    alert(compare(americanDate("2/3/2005"), testDate) + " americanDate eq");
    alert(compare("2/3/2005", toAmericanDate(testDate))+ " toAmericanDate eq");
</script>
</pre>
</body>
</html>