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
| <!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>
<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 src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.14.0/jquery.validate.min.js"></script>
<script>
"use strict";
$( function(){ // forme abrégée de $(document).ready( function( ){
let
countForms = 0,
createForms = function( ){
countForms++;
let newForm = $( "#templateForms" ).clone( true, true ).appendTo( "#content" );
newForm
.show()
.attr( 'id', 'form' + '_' + countForms );
let tel_m = newForm.find( "[name='tel_m']" );
tel_m.attr( 'name', tel_m.attr( 'name' ) + '_' + countForms );
$( '#countForms' ).val( countForms );
};
$( "#createForms" ).on( "click", function( ){
createForms();
});
createForms();
$( "#sky-form" ).validate({
"rules" : {
"tel_m" : {
"required" : true,
"digits" : true
}
},
"messages" : {
"tel_m" : {
"required" : 'Saisissez un numéro de téléphone',
"digits" : 'Entrez seulement des chiffres'
}
},
"submitHandler" : function( form ){
$( form ).ajaxSubmit({
"beforeSend" : function( ){
$( "#sky-form button[type='submit']" ).attr( 'disabled', true );
},
"success" : function( ){
$( "#sky-form" ).addClass( 'submited' );
}
});
},
"errorPlacement" : function( error, element ){
error.insertAfter( element.parent() );
}
});
});
$( window ).load( function(){
});
</script>
</head>
<body>
<form id="sky-form">
<div id="content">
<input type="text" name="countForms" id="countForms" value="0">
<input type="button" value="+" id="createForms" title="Ajouter un interlocuteur">
</div>
<div style="display:none" id="templateForms">
<input type="tel" placeholder="Tél mobile" name="tel_m" required>
</div>
<button type="submit" value="envoyer" name="valider" class="button">Valider</button>
</form>
</body>
</html> |
Partager