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
| <!DOCTYPE html>
<html lang="fr" dir="ltr">
<head>
<meta http-equiv="cache-control" content="public, max-age=60">
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0">
<meta name="author" content="Daniel Hagnoul">
<title>Test</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/sunny/jquery-ui.css">
<style>
</style>
</head>
<body>
<table>
<tbody>
<tr>
<td>
<input id="ident1129" class="delai" placeholder="delai" style="width :90%;margin-left:auto;margin-right:auto;" >
<input id="time1129" class="delai" type="hidden" value="" >
</td>
<td>
<input id="ident1130" class="delai" placeholder="delai" style="width :90%;margin-left:auto;margin-right:auto;" >
<input id="time1130" class="delai" type="hidden" value="" >
</td>
<td>
<input id="ident1142" class="delai" placeholder="delai" style="width :90%;margin-left:auto;margin-right:auto;" >
<input id="time1142" class="delai" type="hidden" value="" >
</td>
</tr>
</tbody>
</table>
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script>
"use strict";
$( function(){ // forme abrégée de $(document).ready( function( ){
$( "input[id^='ident']" ).datepicker({
onClose: function( dateString ){
var myDate = new Date( dateString ).getTime() / 1000 ;
console.log( myDate );
$( this ).next().val( myDate );
console.log( $( this ).next().val() );
}
});
});
</script>
</body>
</html> |
Partager