IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Contribuez Discussion :

Simulation d'un "input" multi lignes avec une division éditable


Sujet :

Contribuez

  1. #1
    Rédacteur

    Avatar de danielhagnoul
    Homme Profil pro
    Étudiant perpétuel
    Inscrit en
    Février 2009
    Messages
    6 389
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 73
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant perpétuel
    Secteur : Enseignement

    Informations forums :
    Inscription : Février 2009
    Messages : 6 389
    Points : 22 933
    Points
    22 933
    Billets dans le blog
    125
    Par défaut Simulation d'un "input" multi lignes avec une division éditable
    Simulation d'un "input" multi lignes avec une division éditable

    Utilise l'attribut "contenteditable" d'HTML5.

    L'utilisation du jQuery n'est pas obligatoire, on peut faire la même chose avec du Vanilla JS, du HTML5 et du CSS.

    Il suffit de copier-coller mon code pour tester.

    L'avantage par rapport à un textarea ? Je ne me suis pas encore posé la question.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    <!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">
    		<style>
    			.hyphens { -moz-hyphens:auto; -webkit-hyphens:auto; -ms-hyphens:auto; hyphens:auto; }
    			article { display:table-cell; text-align:justify; /*border:0.1rem dotted grey;*/ }
    			.table1, .table2 { border-collapse:separate; border-spacing:3rem; }
    			.ligne { display:table-row; }
     
    			.table1 .ligne { min-height:35rem; }
    			.table1 article { min-width:40rem; max-width: 60rem; vertical-align:top; }
     
    			/* TEST */
    			fieldset { border: 0.1rem solid yellow; }
    			#divInputID { padding: 0.6rem; min-width: 15rem; max-width: 25rem; min-height: 2rem; max-height: 20rem; 
    				overflow: auto; border: 0.1rem solid gray; cursor: text; }
    		</style> 
    	</head>
    	<body>
    		<h1>Forum jQuery</h1>
    		<h2>Titre 2</h2>
    		<section class="conteneur">
    			<section class="table1">
    				<section>
    					<article>
     
    						<form>
    							<fieldset>
    								<label>Taper votre message : </label>
    								<div id="divInputID" contenteditable></div>
    							</fieldset>
    						</form>
     
    					</article>
    					<article>
     
    						<div></div>
     
    					</article>
    				</section>
    			</section>
    		</section>
    		<footer itemscope itemtype="http://danielhagnoul.developpez.com/">
    			<time datetime="2012-12-13T23:58:38.281+01:00" pubdate>2012-12-13T23:58:38.281+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 d’exercices</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://code.jquery.com/color/jquery.color-2.1.1.min.js"></script>
    		<script src="http://danielhagnoul.developpez.com/lib/dvjh/base.js"></script>
    		<script>
    			"use strict";
     
    			$(function(){
     
    				$( "#divInputID" ).on( "focusout", function( event){
    					$( "article:last > div").text( $( this ).text() );
    				});
     
    			});
    		</script>
    	</body>
    </html>

    Blog

    Sans l'analyse et la conception, la programmation est l'art d'ajouter des bogues à un fichier texte vide.
    (Louis Srygley : Without requirements or design, programming is the art of adding bugs to an empty text file.)

  2. #2
    Rédacteur

    Avatar de danielhagnoul
    Homme Profil pro
    Étudiant perpétuel
    Inscrit en
    Février 2009
    Messages
    6 389
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 73
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant perpétuel
    Secteur : Enseignement

    Informations forums :
    Inscription : Février 2009
    Messages : 6 389
    Points : 22 933
    Points
    22 933
    Billets dans le blog
    125
    Par défaut Création d'un événement "change"
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    <!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">
    		<style>
    			.hyphens { -moz-hyphens:auto; -webkit-hyphens:auto; -ms-hyphens:auto; hyphens:auto; }
    			article { display:table-cell; text-align:justify; /*border:0.1rem dotted grey;*/ }
    			.table1, .table2 { border-collapse:separate; border-spacing:3rem; }
    			.ligne { display:table-row; }
     
    			.table1 .ligne { min-height:35rem; }
    			.table1 article { min-width:40rem; max-width: 60rem; vertical-align:top; }
     
    			/* TEST */
    			fieldset { border: 0.1rem solid yellow; }
    			#divInputID { padding: 0.6rem; min-width: 15rem; max-width: 25rem; min-height: 2rem; max-height: 20rem; 
    				overflow: auto; border: 0.1rem solid gray; cursor: text; }
    		</style> 
    	</head>
    	<body>
    		<h1>Forum jQuery</h1>
    		<h2>Titre 2</h2>
    		<section class="conteneur">
    			<section class="table1">
    				<section>
    					<article>
     
    						<form>
    							<fieldset>
    								<label>Taper votre message : </label>
    								<div id="divInputID" contenteditable></div>
    							</fieldset>
    						</form>
     
    					</article>
    					<article>
     
    						<div></div>
     
    					</article>
    				</section>
    			</section>
    		</section>
    		<footer itemscope itemtype="http://danielhagnoul.developpez.com/">
    			<time datetime="2012-12-13T23:58:38.281+01:00" pubdate>2012-12-13T23:58:38.281+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 d’exercices</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://code.jquery.com/color/jquery.color-2.1.1.min.js"></script>
    		<script src="http://danielhagnoul.developpez.com/lib/dvjh/base.js"></script>
    		<script>
    			"use strict";
     
    			$(function(){
     
    				$( "[contenteditable]" )
    					.data( "dvjhKey", false )
    					.data( "dvjhLength", 0 )
    					.on( "focusin", function(){
    						var jObj = $( this );
     
    						jObj
    							.data( "dvjhLength", jObj.text().length )
    							.one( "keydown", function( event ){
    								$( this ).data( "dvjhKey", true );
    							});
    					})
    					.on( "focusout", function( event ){
    						var jObj = $( this ),
    							lengthFinal = jObj.text().length,
    							lengthOrigine = jObj.data( "dvjhLength" );
     
    						if ( jObj.data( "dvjhKey" ) == true || lengthFinal != lengthOrigine ){
    							jObj
    								.trigger( $.Event( "change" ) )
    								.data( "dvjhKey", false );
    						}
    					})
    					.on( "change", function( event ){
    						$( "article:last > div").text( $( this ).text() );
    					});
     
    			});
    		</script>
    	</body>
    </html>

    Blog

    Sans l'analyse et la conception, la programmation est l'art d'ajouter des bogues à un fichier texte vide.
    (Louis Srygley : Without requirements or design, programming is the art of adding bugs to an empty text file.)

Discussions similaires

  1. curseur multi ligne dans une form tabulaire
    Par miss_poopoucy dans le forum Forms
    Réponses: 6
    Dernier message: 29/09/2009, 08h59
  2. INSERT multi-lignes avec valeurs connues
    Par herve91 dans le forum Langage SQL
    Réponses: 2
    Dernier message: 09/11/2006, 23h13
  3. [HTML] Supprimer le multi ligne d'une zone de text
    Par Furius dans le forum Balisage (X)HTML et validation W3C
    Réponses: 9
    Dernier message: 29/11/2005, 14h49

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo