Convert string(2005-2-3) to iso Date : Color « Mochkit « JavaScript DHTML






Convert string(2005-2-3) to iso 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(testDate.getFullYear()+ " isoDate year ok");
    alert(testDate.getDate() + " isoDate day ok");
    alert(testDate.getMonth() + " isoDate month ok");
    alert(toISODate(testDate));

</script>
</pre>
</body>
</html>

   
  








Related examples in the same category

1.Color.toRGBString()
2.Convert color from RGB value
3.Convert Hex string to color
4.Convert string to color
5.Convert RGB string to color
6.Color.fromString("rgb(190,222,173)").toHexString()
7.Color to HSL value
8.Color.fromString("hsl(120,100%,75%)").toHexString()
9.Convert color to HSL string
10.Convert color from HSL value
11.Reference components from HSL value
12.Convert HSL value to color and convert from RGB
13.Reference components from a HSL color
14.Color.fromName: Convert static string to color: aqua, transparent
15.Transparent color
16.Color.fromString: Covnert static string to color
17.Color.fromRGBString("rgba( 0, 255, 255, 50%)").asRGB().a
18.Convert color value to HSV
19.Convert HSV value to color
20.Reference components from HSV value
21.Get color from tag style
22.Compare two colors
23.Static color methods in Color class
24.Default colors are interned
25.Demo of MochiKit.Color