1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
| <!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="Author" content="Daniel Hagnoul">
<title>Forum jQuery</title>
<link href='http://fonts.googleapis.com/css?family=Sofia|Ubuntu:400|Kreon'>
<link rel="stylesheet" href="http://danielhagnoul.developpez.com/styles/dvjhRemBase.css">
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/themes/overcast/jquery-ui.css">
<style>
/* TEST */
#datepicker { width: 25rem; margin-right: 0.6rem; }
</style>
</head>
<body>
<h1>Forum jQuery</h1>
<h2>Titre 2</h2>
<section class="conteneur">
<p>Date: <input type="text" id="datepicker" />
</section>
<footer itemscope itemtype="http://danielhagnoul.developpez.com/">
<time datetime="2012-12-28T13:46:01.327+01:00" pubdate>2012-12-28T13:46:01.327+01:00</time>
<span itemprop="name">Daniel Hagnoul</span>
<a href="http://www.developpez.net/forums/u285162/danielhagnoul/" itemprop="url">@danielhagnoul</a>
<a href="http://danielhagnoul.developpez.com/" itemprop="url">Mon cahier dexercices</a>
<a href="http://javascript.developpez.com/faq/jquery/" itemprop="url">FAQ</a>
<a href="http://javascript.developpez.com/cours/?page=frameworks#jquery" itemprop="url">Tutoriels</a>
</footer>
<script src="http://danielhagnoul.developpez.com/lib/raphael-min.js"></script>
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/i18n/jquery-ui-i18n.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
<script charset="utf-8" src="http://danielhagnoul.developpez.com/lib/dvjh/base.js"></script>
<script>
"use strict";
$(function(){
$.datepicker.setDefaults( $.datepicker.regional[ "fr" ] );
$( "#datepicker" ).datepicker({
showOn : "button",
buttonImage : "http://danielhagnoul.developpez.com/images/calendar.gif",
buttonImageOnly : true,
showWeeks : true,
changeMonth : true,
changeYear : true,
showButtonPanel : true,
minDate : "-3m -15d", // la date du jour - 3 mois et 15 jours
maxDate : "+1y +3m +15d", // la date du jour + 1 an 3 mois et 15 jours
onClose : function( dateStr, ObjPicker ){
if ( dateStr.length > 0 ){
/*
* Solution 1 : formatDate
*/
/*
$( this ).val( // this est l'input
$.datepicker.formatDate( "yy-mm-dd",
new Date(
dateStr.slice( 6 ), // yyyy
parseInt( dateStr.slice( 3, 5 ), 10 ) - 1, // mm - 1
parseInt( dateStr.slice( 0, 2 ), 10 ) // dd
)
)
);
*/
/*
* Solution 2 : toISOString
*
* Je n'aime pas cette solution pour les
* raisons indiquées ici :
* http://www.developpez.net/forums/d974898/webmasters-developpement-web/contribuez/date-iso-8601-mal-traitee-navigateurs/
*/
/*
$( this ).val(
new Date(
dateStr.slice( 6 ), // yyyy
parseInt( dateStr.slice( 3, 5 ), 10 ) - 1, // mm - 1
parseInt( dateStr.slice( 0, 2 ), 10 ) // dd
).toISOString()
);
*/
/*
* Solution 3 : formatISO
*/
$( this ).val(
new Date(
dateStr.slice( 6 ), // yyyy
parseInt( dateStr.slice( 3, 5 ), 10 ) - 1, // mm - 1
parseInt( dateStr.slice( 0, 2 ), 10 ) // dd
).formatISO()
);
/*
* Le code de formatISO() :
*
Date.prototype.formatISO = function(){
this._toLen2 = function(_nowStr){
_nowStr = _nowStr.toString();
return ('0'+_nowStr).substr(-2,2);
};
this._nowFormat = 'aaaa-mm-jjThh:ii:ss.lllSzz:00';
this._nowFormat = this._nowFormat.replace(/j+/, this._toLen2(this.getDate()));
this._nowFormat = this._nowFormat.replace(/m+/, this._toLen2(this.getMonth()+1));
this._nowFormat = this._nowFormat.replace(/a+/, this.getFullYear());
this._nowFormat = this._nowFormat.replace(/h+/, this._toLen2(this.getHours()));
this._nowFormat = this._nowFormat.replace(/i+/, this._toLen2(this.getMinutes()));
this._nowFormat = this._nowFormat.replace(/s+/, this._toLen2(this.getSeconds()));
this._nowFormat = this._nowFormat.replace(/l+/, this.getMilliseconds());
this._nowFormat = this._nowFormat.replace(/S+/, (this.getTimezoneOffset() < 0) ? ("+") : ("-"));
this._nowFormat = this._nowFormat.replace(/z+/, this._toLen2(Math.abs(this.getTimezoneOffset()/60)));
return this._nowFormat;
};
*/
}
}
});
});
$(window).load(function(){
});
</script>
</body>
</html> |
Partager