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

jQuery Discussion :

Call Json page dans ma page html/jquery impossible à parser


Sujet :

jQuery

  1. #1
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut Call Json page dans ma page html/jquery impossible à parser
    Bonjour,

    Je souhaite récupérer les datas d'une page http json le tout se fait en local sur ma machine win7.

    Je ne comprends pas pourquoi cela ne fonctionne pas.

    Je code ma page se trouve dans mon répertoire c:\moncode\jsontest.html et j'ai un serveur local qui génère le stream json.

    Pouvez-vous m'aider à trouver mon erreur ? merci


    Le code html est le suivant suivit du contenu json:


    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
     
    <html>
    <head>
    <!--<script src="http://code.jquery.com/jquery-latest.js"></script>-->
    <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
     
    <script type="text/javascript">  
    function load() {
        var originalurl = 'http://localhost:9010/geo/encode/composition/name?s_name=FR&sv_name=dis_l73&g_name=G_N1&gv_name=dis_l73';    
     
        jQuery.getJSON(originalurl,  function (data) {  
            var objJSON = JSON.parse(data);        
            alert(objJSON.length);  
     
            for (var i = 0, len = objJSON.length; i < len; ++i) {
                var aComp = objJSON[i];
                alert( i ) ;
            }
        });  
    }    
    </script>  
     
    <body onload="load()"></body>    
    </head>
    </html>
    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
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
     
    {
      "Compositions":{
        "Composition":[
          {
            "Type":"LC",
            "Category":"1",
            "Name":"77_L73",
            "Cell":{
              "Col":"10",
              "Row":"2",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"V",
            "Category":"2",
            "Name":"05AN",
            "Cell":{
              "Col":"14",
              "Row":"2",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"DP",
            "Category":"2",
            "Name":"05AN",
            "Cell":{
              "Col":"15",
              "Row":"2",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"V",
            "Category":"2",
            "Name":"04BN",
            "Cell":{
              "Col":"20",
              "Row":"2",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"CGB",
            "Category":"1",
            "Name":"GC(3,4)",
            "Cell":{
              "Col":"4",
              "Row":"3",
              "Rotation":"180",
              "Symetry":"0"
            }
          },
          {
            "Type":"SRP",
            "Category":"8",
            "Name":"GN",
            "Cell":{
              "Col":"5",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"SIGN",
            "Category":"1",
            "Name":"GN",
            "Cell":{
              "Col":"6",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"DP",
            "Category":"1",
            "Name":"GN",
            "Cell":{
              "Col":"7",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"JNT",
            "Category":"1",
            "Name":"A630_2@GN",
            "Cell":{
              "Col":"8",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"V",
            "Category":"1",
            "Name":"GN",
            "Cell":{
              "Col":"9",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"SLC",
            "Category":"1",
            "Name":"77_L73_A",
            "Cell":{
              "Col":"10",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"SRP",
            "Category":"5",
            "Name":"05AN",
            "Cell":{
              "Col":"11",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"PNL",
            "Category":"1",
            "Name":"t64462_179",
            "Cell":{
              "Col":"12",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"2"
            }
          },
          {
            "Type":"PNL",
            "Category":"1",
            "Name":"b64462_742",
            "Cell":{
              "Col":"13",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"AW",
            "Category":"3",
            "Name":"05AN",
            "Cell":{
              "Col":"14",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"SEG",
            "Category":"1",
            "Name":"GC(3,15)",
            "Cell":{
              "Col":"15",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"SEG",
            "Category":"1",
            "Name":"GC(3,16)",
            "Cell":{
              "Col":"16",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"SRP",
            "Category":"5",
            "Name":"04BN",
            "Cell":{
              "Col":"17",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"SEG",
            "Category":"1",
            "Name":"GC(3,18)",
            "Cell":{
              "Col":"18",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"SEG",
            "Category":"1",
            "Name":"GC(3,19)",
            "Cell":{
              "Col":"19",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"AW",
            "Category":"1",
            "Name":"04BN",
            "Cell":{
              "Col":"20",
              "Row":"3",
              "Rotation":"180",
              "Symetry":"0"
            }
          },
          {
            "Type":"DP",
            "Category":"1",
            "Name":"EXN",
            "Cell":{
              "Col":"21",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"2"
            }
          },
          {
            "Type":"SIGN",
            "Category":"1",
            "Name":"EXN",
            "Cell":{
              "Col":"22",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"2"
            }
          },
          {
            "Type":"SRP",
            "Category":"7",
            "Name":"EXN",
            "Cell":{
              "Col":"23",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"2"
            }
          },
          {
            "Type":"CGB",
            "Category":"1",
            "Name":"GC(3,24)",
            "Cell":{
              "Col":"24",
              "Row":"3",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"SEG",
            "Category":"1",
            "Name":"GC(4,15)",
            "Cell":{
              "Col":"15",
              "Row":"4",
              "Rotation":"315",
              "Symetry":"0"
            }
          },
          {
            "Type":"SEG",
            "Category":"1",
            "Name":"GC(4,19)",
            "Cell":{
              "Col":"19",
              "Row":"4",
              "Rotation":"45",
              "Symetry":"0"
            }
          },
          {
            "Type":"CGB",
            "Category":"1",
            "Name":"GC(5,4)",
            "Cell":{
              "Col":"4",
              "Row":"5",
              "Rotation":"180",
              "Symetry":"0"
            }
          },
          {
            "Type":"SRP",
            "Category":"8",
            "Name":"GXN",
            "Cell":{
              "Col":"5",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"SIGN",
            "Category":"1",
            "Name":"GXN",
            "Cell":{
              "Col":"6",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"1"
            }
          },
          {
            "Type":"DP",
            "Category":"1",
            "Name":"GXN",
            "Cell":{
              "Col":"7",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"1"
            }
          },
          {
            "Type":"JNT",
            "Category":"1",
            "Name":"GXNB@GXN",
            "Cell":{
              "Col":"8",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"V",
            "Category":"1",
            "Name":"GXN",
            "Cell":{
              "Col":"9",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"SLC",
            "Category":"1",
            "Name":"77_L73_B",
            "Cell":{
              "Col":"10",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"SRP",
            "Category":"5",
            "Name":"05BN",
            "Cell":{
              "Col":"11",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"PNL",
            "Category":"1",
            "Name":"c64462_180",
            "Cell":{
              "Col":"12",
              "Row":"5",
              "Rotation":"180",
              "Symetry":"0"
            }
          },
          {
            "Type":"PNL",
            "Category":"1",
            "Name":"s64462_741",
            "Cell":{
              "Col":"13",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"1"
            }
          },
          {
            "Type":"SEG",
            "Category":"1",
            "Name":"GC(5,14)",
            "Cell":{
              "Col":"14",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"SEG",
            "Category":"1",
            "Name":"GC(5,15)",
            "Cell":{
              "Col":"15",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"AW",
            "Category":"3",
            "Name":"05BN",
            "Cell":{
              "Col":"16",
              "Row":"5",
              "Rotation":"180",
              "Symetry":"0"
            }
          },
          {
            "Type":"SRP",
            "Category":"5",
            "Name":"04AN",
            "Cell":{
              "Col":"17",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"AW",
            "Category":"1",
            "Name":"04AN",
            "Cell":{
              "Col":"18",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"SEG",
            "Category":"1",
            "Name":"GC(5,19)",
            "Cell":{
              "Col":"19",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"SEG",
            "Category":"1",
            "Name":"GC(5,20)",
            "Cell":{
              "Col":"20",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"DP",
            "Category":"1",
            "Name":"EN",
            "Cell":{
              "Col":"21",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"3"
            }
          },
          {
            "Type":"SIGN",
            "Category":"1",
            "Name":"EN",
            "Cell":{
              "Col":"22",
              "Row":"5",
              "Rotation":"180",
              "Symetry":"0"
            }
          },
          {
            "Type":"SRP",
            "Category":"7",
            "Name":"EN",
            "Cell":{
              "Col":"23",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"2"
            }
          },
          {
            "Type":"CGB",
            "Category":"1",
            "Name":"GC(5,24)",
            "Cell":{
              "Col":"24",
              "Row":"5",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"DP",
            "Category":"2",
            "Name":"05BN",
            "Cell":{
              "Col":"15",
              "Row":"6",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"V",
            "Category":"2",
            "Name":"05BN",
            "Cell":{
              "Col":"16",
              "Row":"6",
              "Rotation":"0",
              "Symetry":"0"
            }
          },
          {
            "Type":"V",
            "Category":"2",
            "Name":"04AN",
            "Cell":{
              "Col":"18",
              "Row":"6",
              "Rotation":"0",
              "Symetry":"0"
            }
          }
        ]
      }
    }

  2. #2
    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 : 53
    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 418
    Points
    91 418
    Billets dans le blog
    20
    Par défaut
    Déjà, si ta page est appelée en local (protocole file://), elle ne peut pas appeler en AJAX un serveur, même en local (localhost).
    Ensuite,
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    var objJSON = JSON.parse(data);
    .getJSON() se charge déjà de parser la valeur reçue, donc tu ne peux pas appliquer JSON.parse() sur un objet déjà parsé.
    Pas de question technique par MP !
    Tout le monde peut participer à developpez.com, vous avez une idée, contactez-moi !
    Mes formations video2brain : La formation complète sur JavaScriptJavaScript et le DOM par la pratiquePHP 5 et MySQL : les fondamentaux
    Mon livre sur jQuery
    Module Firefox / Chrome d'intégration de JSFiddle et CodePen sur le forum

  3. #3
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut
    merci pour ta réponse.

    Donc si je comprends bien si je développe en local sur ma machine et que j'essaie avec jquery acceder au contenu json je dois remplacer la syntaxe

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    http://localhost:9010/geo/encode/composition/name?s_name=FR&sv_name=dis_l73&g_name=G_N1&gv_name=dis_l73
    par

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    file://localhost:9010/geo/encode/composition/name?s_name=FR&sv_name=dis_l73&g_name=G_N1&gv_name=dis_l73
    Est-ce bien cela ?

  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 637
    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 637
    Points : 66 656
    Points
    66 656
    Billets dans le blog
    1
    Par défaut
    Pourquoi faire un parseJSON sur un json ???

    getJSON parse directement le retour en json ...

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     jQuery.getJSON(originalurl,  function (data) { 
    // ICI data est déja un JSON !!!
    Ma page Developpez - Mon Blog Developpez
    Président du CCMPTP (Comité Contre le Mot "Problème" dans les Titres de Posts)
    Deux règles du succès: 1) Ne communiquez jamais à quelqu'un tout votre savoir...
    Votre post est résolu ? Alors n'oubliez pas le Tag

    Venez sur le Chat de Développez !

  5. #5
    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 : 53
    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 418
    Points
    91 418
    Billets dans le blog
    20
    Par défaut
    Est-ce bien cela ?
    Non... pas vraiment...

    file://localhost:9010
    n'a aucun sens (à moins que tu aies un fichier nommé localhost dans ton répertoire !

    Pour que tes pages fonctionnent, il faut les appeler depuis un serveur (tu auras dans la barre d'adresse http://localhost, mais bon, les navigateurs ont maintenant tendance à ne plus afficher le http://) au lieu de file:// qui correspond à un appel depuis le système de fichiers.
    Ensuite, si tu n'appelles pas ton fichier depuis le serveur, alors le serveur ne pourra pas traiter tes pages et surtout tu ne pourras pas appeler une URL distante à cause de la Same Origin Policy.
    Pas de question technique par MP !
    Tout le monde peut participer à developpez.com, vous avez une idée, contactez-moi !
    Mes formations video2brain : La formation complète sur JavaScriptJavaScript et le DOM par la pratiquePHP 5 et MySQL : les fondamentaux
    Mon livre sur jQuery
    Module Firefox / Chrome d'intégration de JSFiddle et CodePen sur le forum

  6. #6
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut
    çà devient compliqué.

    Donc, si je comprends bien parce que je fait appel a des sources différentes de l'éxécution, c'est impossible.

    Comment puis-je tester mon code ? je n'ai pas d'autre choix que mon localhost.

    Vous faites comment pour tester lorsque vous n'avez pas de serveur dédié ?

  7. #7
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut
    j'utilise la méthode $.ajax et j'obtiens une erreur du style {“readyState”:4,“status”:200,“statusText”:“success”}

    Je ne comprends pas ce qu'il fait.

  8. #8
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut
    Je viens d'installer wamp sur ma machine

    Comment donc configurer mon wamp server pour rediriger http://localhost:9091 ?

    Bien à vous

Discussions similaires

  1. QTextEdit et saut de page dans un tableau HTML
    Par chrtophe dans le forum Débuter
    Réponses: 0
    Dernier message: 03/04/2013, 23h16
  2. HTML - Page dans une page?
    Par Dimmy dans le forum Balisage (X)HTML et validation W3C
    Réponses: 3
    Dernier message: 20/01/2009, 19h15
  3. [HTML] ouvrir page dans autre page déjà ouverte
    Par geraldh713 dans le forum Balisage (X)HTML et validation W3C
    Réponses: 4
    Dernier message: 08/10/2006, 20h37
  4. [XHTML] [débutant] Ouvrir une page dans une page xhtml
    Par wikers dans le forum Balisage (X)HTML et validation W3C
    Réponses: 2
    Dernier message: 14/02/2006, 16h20
  5. [débutant] Même partie de page dans chaque page
    Par ShinJava dans le forum Servlets/JSP
    Réponses: 9
    Dernier message: 10/12/2004, 15h02

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