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

JavaScript Discussion :

equivalent de document.getElementById("").value dans firefox


Sujet :

JavaScript

  1. #1
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Avril 2008
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : Tunisie

    Informations forums :
    Inscription : Avril 2008
    Messages : 69
    Points : 36
    Points
    36
    Par défaut equivalent de document.getElementById("").value dans firefox
    Salut tous le monde,

    Mon application tourne bien avec IE mais lorsque je la test sous FireFox elle fonctionne pas.
    il s'agit que FF ne reconnait pas .value dans "document.getElementById(""LIST_INDEXS_"+count)"
    y'a til un équivalent pour récupérer cette valeur
    Merci Bien

  2. #2
    Rédacteur/Modérateur
    Avatar de andry.aime
    Homme Profil pro
    Inscrit en
    Septembre 2007
    Messages
    8 391
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Ile Maurice

    Informations forums :
    Inscription : Septembre 2007
    Messages : 8 391
    Points : 15 059
    Points
    15 059
    Par défaut
    Salut
    "document.getElementById(""LIST_INDEXS_"+count)"
    document.getElementById est supporté par FF, on peut voir ton code complet?

  3. #3
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 640
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 640
    Points : 66 663
    Points
    66 663
    Billets dans le blog
    1
    Par défaut
    FFx reconnait parfaitement le getElemnetById ...

    à mon avis le souci est ailleurs ...
    on peut voir du code ?

  4. #4
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 640
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 640
    Points : 66 663
    Points
    66 663
    Billets dans le blog
    1
    Par défaut
    ce ne serait pas un textarea par hasard? modifie en innerhtml ,

  5. #5
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Avril 2008
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : Tunisie

    Informations forums :
    Inscription : Avril 2008
    Messages : 69
    Points : 36
    Points
    36
    Par défaut
    je sais bien quel marche sous FF, mais il reconnait pas .value
    je veu récupérer une valeur d'une liste
    .innerHTML m'affiche toute le résultat mais g besoin d'un seul élément
    Merci

  6. #6
    Rédacteur

    Avatar de Bovino
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2008
    Messages
    23 647
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Gironde (Aquitaine)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2008
    Messages : 23 647
    Points : 91 220
    Points
    91 220
    Billets dans le blog
    20
    Par défaut
    Si, Firefox reconnait value pour les éléments ayant une propriété value.
    Maintenant, si tu nous montrais ton code et la partie du html concernée, ça aiderait grandement à te répondre précisément !

  7. #7
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Avril 2008
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : Tunisie

    Informations forums :
    Inscription : Avril 2008
    Messages : 69
    Points : 36
    Points
    36
    Par défaut
    code JS :

    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
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    ///////////////////////////////////////
    function getCritere(count)
    			{
     
    				//MODIF MNB MZ modifier ".value par .innerHTML"
    				var strBool = document.getElementById("SEL_OPERATION_"+count).value 	
    						alert("strBool  "+strBool)
    				var strOperation = document.getElementById("SEL_CONDITIONS_"+count).value
    					alert("strOperation  "+strOperation)
    				var strForm = document.getElementById("FORMS_"+count).value
    					alert("strForm  "+strForm)
    				var nom = navigator.appName; 
    				alert("nom nav :"+nom)
    				if(nom=='Microsoft Internet Explorer')
    				{
    				var strSelectedIndexe = document.getElementById("LIST_INDEXS_"+count).value;
    				alert("111111111111111 strSelectedIndexe---> LIST_INDEXS_"+count+"---"+strSelectedIndexe)
    				}
    				if(nom=='Netscape')
    				{
    					var strSelectedIndexe = document.getElementById("LIST_INDEXS_"+count).value;
    					alert("111111111111111 strSelectedIndexe---> LIST_INDEXS_"+count+"---"+strSelectedIndexe)
    				}
    				var strTypeIndex = strSelectedIndexe.split("¤")[1];
    				alert("strTypeIndex 999999999999999999 "+strTypeIndex)
    				if((strTypeIndex=='DATE')||(strTypeIndex=='NUM'))
    				{
    					strOperation = document.getElementById("SEL_CONDITIONS_DATE_"+count).value
    					alert("000000000 --->strOperation --"+strOperation) 
     
    				} 
     
    				strSelectedIndexe = strSelectedIndexe.split("¤")[0];
    				alert("apre innerHTML 0000000000---->"+strSelectedIndexe)
    ....................
     
     
    ////////
    strNewCriterSearch += "<td nowrap=\"\">"  
    				strNewCriterSearch += "<select id=\"LIST_INDEXS_"+compteurOfCriter+"\" class=\"STYLE_TEXT_INPUT\" onchange=\"InitChampsToSearch("+compteurOfCriter+", 'YES');\">" 
    				strNewCriterSearch += "<option value=\"\"></option>"
    				strNewCriterSearch += "</select>"
    				strNewCriterSearch += "<span id=\"LIBELLE_INDEX_"+compteurOfCriter+"\" class=\"SIMPLE_TEXT_OVER\"></span>" 
    				strNewCriterSearch += "</td>"							
     
    				strNewCriterSearch += "<td>"
    				strNewCriterSearch += "<select id=\"SEL_CONDITIONS_"+compteurOfCriter+"\" class=\"STYLE_TEXT_INPUT\" style=\"display:none\">"
    				strNewCriterSearch += "<option value=\"EXACT\">"+strLibelleEXACT+"</option>"
    				strNewCriterSearch += "<option value=\"UN_DES_MOTS\">"+strLibelleUN_DES_MOTS+"</option>"
    				strNewCriterSearch += "<option value=\"TOUS_LES_MOTS\">"+strLibelleTOUS_LES_MOTS+"</option>"
    				strNewCriterSearch += "</select>"
     
    				strNewCriterSearch += "<select id=\"SEL_CONDITIONS_DATE_"+compteurOfCriter+"\" class=\"STYLE_TEXT_INPUT\" style=\"display:none\" onchange=\"AffichIntervalDate("+compteurOfCriter+")\">"
    				strNewCriterSearch += "<option value=\"EXACT\">"+strLibelleEXACTDATE+"</option>"
    				strNewCriterSearch += "<option value=\"LT\"><</option>"
    				strNewCriterSearch += "<option value=\"LTE\"><=</option>"
    				strNewCriterSearch += "<option value=\"GT\">></option>"
    				strNewCriterSearch += "<option value=\"GTE\">>=</option>"
    				strNewCriterSearch += "<option value=\"INTERVAL\">[ ]</option>"
    				strNewCriterSearch += "</select>"				
    				strNewCriterSearch += "</td>"
     
    				strNewCriterSearch += "<td>"
    				strNewCriterSearch += "<select id=\"SEL_DERIV_"+compteurOfCriter+"\" class=\"STYLE_TEXT_INPUT\" style=\"display:none\">"
    				strNewCriterSearch += "<option value=\"NO\">"+strLibelleNO+"</option>"
    				strNewCriterSearch += "<option value=\"YES\">"+strLibelleYES+"</option>"				
    				strNewCriterSearch += "</select>"
    				strNewCriterSearch += "</td>"
     
    				strNewCriterSearch += "<td>"
    				strNewCriterSearch += "<select id=\"FORMS_"+compteurOfCriter+"\" class=\"STYLE_TEXT_INPUT\" style=\"display:none\">"		
    				strNewCriterSearch += "</select>"								
    				strNewCriterSearch += "</td>"
     
    				strNewCriterSearch += "<td><table cellSpacing=\"2\" cellPadding=\"0\" border=\"0\" valign=\"top\"><tr>"
     
    				strNewCriterSearch += "<td>"
    				strNewCriterSearch += "<input id=\"LIST_INPUT_"+compteurOfCriter+"\" style=\"display:none\"/>"
    				strNewCriterSearch += "</td>"
     
    				strNewCriterSearch += "<td>"
    				strNewCriterSearch += "<input id=\"INPUT_OF_ALL_SEARCH_"+compteurOfCriter+"\" class=\"STYLE_TEXT_INPUT\" style=\"display:none\"/>"  
    				strNewCriterSearch += "</td>"
     
    				strNewCriterSearch += "<td>"
    				strNewCriterSearch += "<input id=\"LIBELLE_LINK_INPUT_OF_ALL_SEARCH_"+compteurOfCriter+"\" class=\"STYLE_TEXT_INPUT\" style=\"display:none\"/>"  
    				strNewCriterSearch += "</td>"
     
    				strNewCriterSearch += "<td>"
    				strNewCriterSearch += "<input id=\"INPUT_OF_SCD_DATE_SEARCH_"+compteurOfCriter+"\" class=\"STYLE_TEXT_INPUT\" style=\"display:none\"/>"
    				strNewCriterSearch += "</td>"
     
    				strNewCriterSearch += "<td>"
    				strNewCriterSearch += "<select id=\"SELECT_OF_ALL_SEARCH_"+compteurOfCriter+"\" class=\"STYLE_TEXT_INPUT\" style=\"display:none\" onchange=\"document.getElementById('INPUT_OF_ALL_SEARCH_"+compteurOfCriter+"').value=this.value;\">"
    				strNewCriterSearch += "</select>" 
    				strNewCriterSearch += "</td>"
     
    				strNewCriterSearch += "<td>"
     
    				//modif taha 02-06-2008
    				strNewCriterSearch += "<img id=\"IMGLINK_"+compteurOfCriter+"\" src=\""+JSPath2Images+"GENERAL/BUTTONS/select-all.gif\" alt=\""+g_strLibelleLangueCourante+"\" style=\"display:none;cursor:pointer\" onclick=\"ViewPopup("+compteurOfCriter+");\"/>"
    				strNewCriterSearch += "</td>"
    				//fin modif taha 02-06-2008
     
    				strNewCriterSearch += "<td>"
    				strNewCriterSearch += "<img id=\"IMGDETAIL_"+compteurOfCriter+"\" src=\""+JSPath2Images+"GENERAL/BUTTONS/display-detailed-list.gif\" alt=\"Voir le formulaire en détail\" style=\"display:none;cursor:pointer\" onclick=\"ViewDetailGrille("+compteurOfCriter+")\"/>"
    				strNewCriterSearch += "</td>"
     
    				strNewCriterSearch += "</tr></table></td>"
     
     
     
    				strNewCriterSearch += "<td width=\"100%\" bgcolor=\"white\"> </td>"  
    				strNewCriterSearch += "</tr>"
    ////////////////////////////////

  8. #8
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 640
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 640
    Points : 66 663
    Points
    66 663
    Billets dans le blog
    1
    Par défaut
    ha ben voilà un select ! on y arrive ...

    bon mis à part le cote select avec innerHTML ...


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    var sel= document.getElementById("LIST_INDEXS_"+count);
    var selvalue=sel.options[sel.selectedIndex].value

  9. #9
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Avril 2008
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : Tunisie

    Informations forums :
    Inscription : Avril 2008
    Messages : 69
    Points : 36
    Points
    36
    Par défaut
    Merci,
    Mais la même erreur persiste avec la modification ultérieur

  10. #10
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 640
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 640
    Points : 66 663
    Points
    66 663
    Billets dans le blog
    1
    Par défaut
    je pense que déja une syntaxe plus claire aiderait ...
    en particulier au niveau de quotes ...

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
    strNewCriterSearch += '<select id="SEL_CONDITIONS_'+compteurOfCriter+'" class="STYLE_TEXT_INPUT" style="display:none">'
    				strNewCriterSearch += '<option value="EXACT">'+strLibelleEXACT+'</option>'

  11. #11
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Avril 2008
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : Tunisie

    Informations forums :
    Inscription : Avril 2008
    Messages : 69
    Points : 36
    Points
    36
    Par défaut
    Bonjour,
    le problème que FF ne voit pas "strSelectedIndexe1.selectedIndex" lorsque je la remplace par un entier le programme tourne " [2] par exemple, sous IE tourne bien.
    Merci
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    var strSelectedIndexe=strSelectedIndexe1.options[strSelectedIndexe1.selectedIndex].text;

  12. #12
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 640
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 640
    Points : 66 663
    Points
    66 663
    Billets dans le blog
    1
    Par défaut
    pas Text !!
    innerHTML

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    alert(this.options[this.selectedIndex].inneHTML)
    ou firstChild.data
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    <select onchange="alert(this.options[this.selectedIndex].firstChild.data)" >
    <option>jhgkhjg kjhgkj</option>
    <option>jhgkhjg kjhgkj</option>
    <option>jhgkhjg kjhgkj</option>
    </select>

  13. #13
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Avril 2008
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : Tunisie

    Informations forums :
    Inscription : Avril 2008
    Messages : 69
    Points : 36
    Points
    36
    Par défaut
    oh dsl,
    le fait mes test sont effectué avec .innerHTML , .value .Text mais toujours avec IE tourne bien, sous FF il voit rien

    Merci pour votre patience

  14. #14
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 640
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 640
    Points : 66 663
    Points
    66 663
    Billets dans le blog
    1
    Par défaut
    pourtant sous IE et FFX ça passe ...
    teste ceci:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    <select onchange="alert(this.selectedIndex)" >
    <option>jhgkhjg kjhgkj</option>
    <option>jhgkhjg kjhgkj</option>
    <option>jhgkhjg kjhgkj</option>
    </select>

  15. #15
    Rédacteur

    Avatar de Bovino
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2008
    Messages
    23 647
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Gironde (Aquitaine)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2008
    Messages : 23 647
    Points : 91 220
    Points
    91 220
    Billets dans le blog
    20
    Par défaut
    Le HTML généré permettra peut-être de mettre en évidence certaines erreurs

  16. #16
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Avril 2008
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : Tunisie

    Informations forums :
    Inscription : Avril 2008
    Messages : 69
    Points : 36
    Points
    36
    Par défaut
    le problème comment intégrer cette cas dans mon code, lorsque j'ai la testé ailleurs fonctionne votre proposition,
    mon select est un peux spécifique;
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    strNewCriterSearch += "<select id=\"LIST_INDEXS_"+compteurOfCriter+"\" class=\"STYLE_TEXT_INPUT\" onchange=\"InitChampsToSearch("+compteurOfCriter+", 'YES');\">" 
    				strNewCriterSearch += "<option value=\"\"></option>"
    				strNewCriterSearch += "</select>"
    en fait je doit récupérer la valeur dans le code Js de cette façon si ce possible
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    var strSelectedIndexe1 = document.getElementById("LIST_INDEXS_"+count);//.value;
     
    					var strSelectedIndexe = strSelectedIndexe1.options[strSelectedIndexe1.selectedIndex].value;
    Merci

  17. #17
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 640
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 640
    Points : 66 663
    Points
    66 663
    Billets dans le blog
    1
    Par défaut
    à mon avis c'est plus un souci d'instanciation que de syntaxe ..
    je n'ai pas le temps de rentrer en detail dans ton code, mais est tu sur qu'au moment ou le selectedIndex est sollicité ton select existe ?

  18. #18
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Avril 2008
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : Tunisie

    Informations forums :
    Inscription : Avril 2008
    Messages : 69
    Points : 36
    Points
    36
    Par défaut
    Bon Merci, mais le ode fonctionne sous IE, c'est ç dire mon select existe, non
    vici le meme traitement je la test sur le deux navigateurs 1 parmi le 2 a tor ou bien moi
    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
     
    var nom = navigator.appName; 
    				alert("nom nav :"+nom)
    				if(nom=='Microsoft Internet Explorer')
    				{
    				var strSelectedIndexe1 = document.getElementById("LIST_INDEXS_"+count);//.value;
    				var strSelectedIndexe=strSelectedIndexe1.options[strSelectedIndexe1.selectedIndex].value;
     
     
    				alert("111111111111111 strSelectedIndexe---> LIST_INDEXS_"+count+"---"+strSelectedIndexe)
    				}
    				if(nom=='Netscape')
    				{
    					var strSelectedIndexe1 = document.getElementById("LIST_INDEXS_"+count);//.value;
     
    					var strSelectedIndexe = strSelectedIndexe1.options[strSelectedIndexe1.selectedIndex].value;
     
    					alert("strSelectedIndexe 2222222222222222222---> "+strSelectedIndexe)
    				}

  19. #19
    Membre émérite
    Inscrit en
    Septembre 2002
    Messages
    2 307
    Détails du profil
    Informations forums :
    Inscription : Septembre 2002
    Messages : 2 307
    Points : 2 814
    Points
    2 814
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    strNewCriterSearch += "<select id=\"LIST_INDEXS_"+compteurOfCriter+"\" class=\"STYLE_TEXT_INPUT\" onchange=\"InitChampsToSearch("+compteurOfCriter+", 'YES');\">"
    surement un problème de génération d'id avec un innerHTML

  20. #20
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Avril 2008
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : Tunisie

    Informations forums :
    Inscription : Avril 2008
    Messages : 69
    Points : 36
    Points
    36
    Par défaut
    Merci,
    s'il vous plait pouvez vous m'expliquer de plus.

Discussions similaires

  1. document.getElementById('livre').value retourne undefined!
    Par sara21 dans le forum Général JavaScript
    Réponses: 1
    Dernier message: 24/05/2007, 14h08
  2. [vbnet 1.1]Inserer deux simple quote sans texte dans une db
    Par ChristopheOce dans le forum Windows Forms
    Réponses: 8
    Dernier message: 15/03/2007, 08h51
  3. [Fonction] Quote et guillemet dans un textarea
    Par ddelec24 dans le forum PHP & Base de données
    Réponses: 2
    Dernier message: 11/03/2007, 15h51
  4. Réponses: 2
    Dernier message: 07/01/2007, 12h22
  5. This.value au lieu de document.getElementById('field').value
    Par yoyot dans le forum Général JavaScript
    Réponses: 4
    Dernier message: 04/03/2005, 14h02

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