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 :

Compatibilite chrome à l’exécution d'un script (Mozilla et Edge marchent correctement)


Sujet :

JavaScript

  1. #1
    Membre régulier
    Homme Profil pro
    Étudiant
    Inscrit en
    Mars 2012
    Messages
    161
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Biens de consommation

    Informations forums :
    Inscription : Mars 2012
    Messages : 161
    Points : 103
    Points
    103
    Par défaut Compatibilite chrome à l’exécution d'un script (Mozilla et Edge marchent correctement)
    Bonjour, j'ai un petit soucis avec chrome à l’exécution d'un script. Celui ci marche sur firefox et edge mais chrome lui ne veut pas, la console me dit :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    Calling Element.createShadowRoot() for an element which already hosts a shadow root is deprecated. See https://www.chromestatus.com/features/4668884095336448 for more details.
    Alors j'ai cliquer pour voir mais j'y comprends pas grand chose à ce qu'il me raconte :/

    Quand on clique pour ouvrir l'erreur ça me met un code énorme dans la console et une erreur à la ligne 465 ( j'ai fait une annotation à coté).

    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
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    his file is part of Adblock Plus <https://adblockplus.org/>,
     * Copyright (C) 2006-2016 Eyeo GmbH
     *
     * Adblock Plus is free software: you can redistribute it and/or modify
     * it under the terms of the GNU General Public License version 3 as
     * published by the Free Software Foundation.
     *
     * Adblock Plus is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU General Public License for more details.
     *
     * You should have received a copy of the GNU General Public License
     * along with Adblock Plus.  If not, see <http://www.gnu.org/licenses/>.
     */
    
    var MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
    var SELECTOR_GROUP_SIZE = 200;
    
    var typeMap = {
      "img": "IMAGE",
      "input": "IMAGE",
      "picture": "IMAGE",
      "audio": "MEDIA",
      "video": "MEDIA",
      "frame": "SUBDOCUMENT",
      "iframe": "SUBDOCUMENT",
      "object": "OBJECT",
      "embed": "OBJECT"
    };
    
    function getURLsFromObjectElement(element)
    {
      var url = element.getAttribute("data");
      if (url)
        return [url];
    
      for (var i = 0; i < element.children.length; i++)
      {
        var child = element.children[i];
        if (child.localName != "param")
          continue;
    
        var name = child.getAttribute("name");
        if (name != "movie"  && // Adobe Flash
            name != "source" && // Silverlight
            name != "src"    && // Real Media + Quicktime
            name != "FileName") // Windows Media
          continue;
    
        var value = child.getAttribute("value");
        if (!value)
          continue;
    
        return [value];
      }
    
      return [];
    }
    
    function getURLsFromAttributes(element)
    {
      var urls = [];
    
      if (element.src)
        urls.push(element.src);
    
      if (element.srcset)
      {
        var candidates = element.srcset.split(",");
        for (var i = 0; i < candidates.length; i++)
        {
          var url = candidates[i].trim().replace(/\s+\S+$/, "");
          if (url)
            urls.push(url);
        }
      }
    
      return urls;
    }
    
    function getURLsFromMediaElement(element)
    {
      var urls = getURLsFromAttributes(element);
    
      for (var i = 0; i < element.children.length; i++)
      {
        var child = element.children[i];
        if (child.localName == "source" || child.localName == "track")
          urls.push.apply(urls, getURLsFromAttributes(child));
      }
    
      if (element.poster)
        urls.push(element.poster);
    
      return urls;
    }
    
    function getURLsFromElement(element)
    {
      var urls;
      switch (element.localName)
      {
        case "object":
          urls = getURLsFromObjectElement(element);
          break;
    
        case "video":
        case "audio":
        case "picture":
          urls = getURLsFromMediaElement(element);
          break;
    
        default:
          urls = getURLsFromAttributes(element);
          break;
      }
    
      for (var i = 0; i < urls.length; i++)
      {
        if (/^(?!https?:)[\w-]+:/i.test(urls[i]))
          urls.splice(i--, 1);
      }
    
      return urls;
    }
    
    function checkCollapse(element)
    {
      var mediatype = typeMap[element.localName];
      if (!mediatype)
        return;
    
      var urls = getURLsFromElement(element);
      if (urls.length == 0)
        return;
    
      ext.backgroundPage.sendMessage(
        {
          type: "filters.collapse",
          urls: urls,
          mediatype: mediatype,
          baseURL: document.location.href
        },
    
        function(collapse)
        {
          function collapseElement()
          {
            var propertyName = "display";
            var propertyValue = "none";
            if (element.localName == "frame")
            {
              propertyName = "visibility";
              propertyValue = "hidden";
            }
    
            if (element.style.getPropertyValue(propertyName) != propertyValue ||
                element.style.getPropertyPriority(propertyName) != "important")
              element.style.setProperty(propertyName, propertyValue, "important");
          }
    
          if (collapse)
          {
            collapseElement();
    
            if (MutationObserver)
              new MutationObserver(collapseElement).observe(
                element, {
                  attributes: true,
                  attributeFilter: ["style"]
                }
              );
          }
        }
      );
    }
    
    function checkSitekey()
    {
      var attr = document.documentElement.getAttribute("data-adblockkey");
      if (attr)
        ext.backgroundPage.sendMessage({type: "filters.addKey", token: attr});
    }
    
    function getContentDocument(element)
    {
      try
      {
        return element.contentDocument;
      }
      catch (e)
      {
        return null;
      }
    }
    
    function ElementHidingTracer(document, selectors)
    {
      this.document = document;
      this.selectors = selectors;
    
      this.changedNodes = [];
      this.timeout = null;
    
      this.observer = new MutationObserver(this.observe.bind(this));
      this.trace = this.trace.bind(this);
    
      if (document.readyState == "loading")
        document.addEventListener("DOMContentLoaded", this.trace);
      else
        this.trace();
    }
    ElementHidingTracer.prototype = {
      checkNodes: function(nodes)
      {
        var matchedSelectors = [];
    
        // Find all selectors that match any hidden element inside the given nodes.
        for (var i = 0; i < this.selectors.length; i++)
        {
          var selector = this.selectors[i];
    
          for (var j = 0; j < nodes.length; j++)
          {
            var elements = nodes[j].querySelectorAll(selector);
            var matched = false;
    
            for (var k = 0; k < elements.length; k++)
            {
              // Only consider selectors that actually have an effect on the
              // computed styles, and aren't overridden by rules with higher
              // priority, or haven't been circumvented in a different way.
              if (getComputedStyle(elements[k]).display == "none")
              {
                matchedSelectors.push(selector);
                matched = true;
                break;
              }
            }
    
            if (matched)
              break;
          }
        }
    
        if (matchedSelectors.length > 0)
          ext.backgroundPage.sendMessage({
            type: "devtools.traceElemHide",
            selectors: matchedSelectors
          });
      },
    
      onTimeout: function()
      {
        this.checkNodes(this.changedNodes);
        this.changedNodes = [];
        this.timeout = null;
      },
    
      observe: function(mutations)
      {
        // Forget previously changed nodes that are no longer in the DOM.
        for (var i = 0; i < this.changedNodes.length; i++)
        {
          if (!this.document.contains(this.changedNodes[i]))
            this.changedNodes.splice(i--, 1);
        }
    
        for (var j = 0; j < mutations.length; j++)
        {
          var mutation = mutations[j];
          var node = mutation.target;
    
          // Ignore mutations of nodes that aren't in the DOM anymore.
          if (!this.document.contains(node))
            continue;
    
          // Since querySelectorAll() doesn't consider the root itself
          // and since CSS selectors can also match siblings, we have
          // to consider the parent node for attribute mutations.
          if (mutation.type == "attributes")
            node = node.parentNode;
    
          var addNode = true;
          for (var k = 0; k < this.changedNodes.length; k++)
          {
            var previouslyChangedNode = this.changedNodes[k];
    
            // If we are already going to check an ancestor of this node,
            // we can ignore this node, since it will be considered anyway
            // when checking one of its ancestors.
            if (previouslyChangedNode.contains(node))
            {
              addNode = false;
              break;
            }
    
            // If this node is an ancestor of a node that previously changed,
            // we can ignore that node, since it will be considered anyway
            // when checking one of its ancestors.
            if (node.contains(previouslyChangedNode))
              this.changedNodes.splice(k--, 1);
          }
    
          if (addNode)
            this.changedNodes.push(node);
        }
    
        // Check only nodes whose descendants have changed, and not more often
        // than once a second. Otherwise large pages with a lot of DOM mutations
        // (like YouTube) freeze when the devtools panel is active.
        if (this.timeout == null)
          this.timeout = setTimeout(this.onTimeout.bind(this), 1000);
      },
    
      trace: function()
      {
        this.checkNodes([this.document]);
    
        this.observer.observe(
          this.document,
          {
            childList: true,
            attributes: true,
            subtree: true
          }
        );
      },
    
      disconnect: function()
      {
        this.document.removeEventListener("DOMContentLoaded", this.trace);
        this.observer.disconnect();
        clearTimeout(this.timeout);
      }
    };
    
    function runInDocument(document, fn, arg)
    {
      var script = document.createElement("script");
      script.type = "application/javascript";
      script.async = false;
      script.textContent = "(" + fn + ")(" + JSON.stringify(arg) + ");";
      document.documentElement.appendChild(script);
      document.documentElement.removeChild(script);
    }
    
    // Neither Chrome[1] nor Safari allow us to intercept WebSockets, and therefore
    // some ad networks are misusing them as a way to serve adverts and circumvent
    // us. As a workaround we wrap WebSocket, preventing blocked WebSocket
    // connections from being opened.
    // [1] - https://bugs.chromium.org/p/chromium/issues/detail?id=129353
    function wrapWebSocket(document)
    {
      if (typeof WebSocket == "undefined")
        return;
    
      var eventName = "abpws-" + Math.random().toString(36).substr(2);
    
      document.addEventListener(eventName, function(event)
      {
        ext.backgroundPage.sendMessage({
          type: "request.websocket",
          url: event.detail.url
        }, function (block)
        {
          document.dispatchEvent(
            new CustomEvent(eventName + "-" + event.detail.url, {detail: block})
          );
        });
      });
    
      runInDocument(document, function(eventName)
      {
        // As far as possible we must track everything we use that could be
        // sabotaged by the website later in order to circumvent us.
        var RealWebSocket = WebSocket;
        var closeWebSocket = Function.prototype.call.bind(RealWebSocket.prototype.close);
        var addEventListener = document.addEventListener.bind(document);
        var removeEventListener = document.removeEventListener.bind(document);
        var dispatchEvent = document.dispatchEvent.bind(document);
        var CustomEvent = window.CustomEvent;
    
        function checkRequest(url, callback)
        {
          var incomingEventName = eventName + "-" + url;
          function listener(event)
          {
            callback(event.detail);
            removeEventListener(incomingEventName, listener);
          }
          addEventListener(incomingEventName, listener);
    
          dispatchEvent(new CustomEvent(eventName, {
            detail: {url: url}
          }));
        }
    
        function WrappedWebSocket(url)
        {
          // Throw correct exceptions if the constructor is used improperly.
          if (!(this instanceof WrappedWebSocket)) return RealWebSocket();
          if (arguments.length < 1) return new RealWebSocket();
    
          var websocket;
          if (arguments.length == 1)
            websocket = new RealWebSocket(url);
          else
            websocket = new RealWebSocket(url, arguments[1]);
    
          checkRequest(websocket.url, function(blocked)
          {
            if (blocked)
              closeWebSocket(websocket);
          });
    
          return websocket;
        }
        WrappedWebSocket.prototype = RealWebSocket.prototype;
        WebSocket = WrappedWebSocket.bind();
        Object.defineProperties(WebSocket, {
          CONNECTING: {value: RealWebSocket.CONNECTING, enumerable: true},
          OPEN: {value: RealWebSocket.OPEN, enumerable: true},
          CLOSING: {value: RealWebSocket.CLOSING, enumerable: true},
          CLOSED: {value: RealWebSocket.CLOSED, enumerable: true},
          prototype: {value: RealWebSocket.prototype}
        });
    
        RealWebSocket.prototype.constructor = WebSocket;
      }, eventName);
    }
    
    function init(document)
    {
      var shadow = null;
      var style = null;
      var observer = null;
      var tracer = null;
    
      wrapWebSocket(document);
    
      function getPropertyFilters(callback)
      {
        ext.backgroundPage.sendMessage({
          type: "filters.get",
          what: "cssproperties"
        }, callback);
      }
      var propertyFilters = new CSSPropertyFilters(window, getPropertyFilters,
                                                   addElemHideSelectors);
    
      // Use Shadow DOM if available to don't mess with web pages that rely on
      // the order of their own <style> tags (#309).
      //
      // However, creating a shadow root breaks running CSS transitions. So we
      // have to create the shadow root before transistions might start (#452).
      //
      // Also, using shadow DOM causes issues on some Google websites,
      // including Google Docs, Gmail and Blogger (#1770, #2602, #2687).
      if ("createShadowRoot" in document.documentElement &&
          !/\.(?:google|blogger)\.com$/.test(document.domain))
      {
        shadow = document.documentElement.createShadowRoot(); ======> Ligne et élément où il m'indique une erreur
        shadow.appendChild(document.createElement("shadow"));
    
        // Stop the website from messing with our shadowRoot
        if ("shadowRoot" in Element.prototype)
        {
          runInDocument(document, function()
          {
            var ourShadowRoot = document.documentElement.shadowRoot;
            var desc = Object.getOwnPropertyDescriptor(Element.prototype, "shadowRoot");
            var shadowRoot = Function.prototype.call.bind(desc.get);
    
            Object.defineProperty(Element.prototype, "shadowRoot", {
              configurable: true, enumerable: true, get: function()
              {
                var shadow = shadowRoot(this);
                return shadow == ourShadowRoot ? null : shadow;
              }
            });
          }, null);
        }
      }
    
      function addElemHideSelectors(selectors)
      {
        if (selectors.length == 0)
          return;
    
        if (!style)
        {
          // Create <style> element lazily, only if we add styles. Add it to
          // the shadow DOM if possible. Otherwise fallback to the <head> or
          // <html> element. If we have injected a style element before that
          // has been removed (the sheet property is null), create a new one.
          style = document.createElement("style");
          (shadow || document.head || document.documentElement).appendChild(style);
    
          // It can happen that the frame already navigated to a different
          // document while we were waiting for the background page to respond.
          // In that case the sheet property will stay null, after addind the
          // <style> element to the shadow DOM.
          if (!style.sheet)
            return;
        }
    
        // If using shadow DOM, we have to add the ::content pseudo-element
        // before each selector, in order to match elements within the
        // insertion point.
        if (shadow)
        {
          var preparedSelectors = [];
          for (var i = 0; i < selectors.length; i++)
          {
            var subSelectors = splitSelector(selectors[i]);
            for (var j = 0; j < subSelectors.length; j++)
              preparedSelectors.push("::content " + subSelectors[j]);
          }
          selectors = preparedSelectors;
        }
    
        // Safari only allows 8192 primitive selectors to be injected at once[1], we
        // therefore chunk the inserted selectors into groups of 200 to be safe.
        // (Chrome also has a limit, larger... but we're not certain exactly what it
        //  is! Edge apparently has no such limit.)
        // [1] - https://github.com/WebKit/webkit/blob/1cb2227f6b2a1035f7bdc46e5ab69debb75fc1de/Source/WebCore/css/RuleSet.h#L68
        for (var i = 0; i < selectors.length; i += SELECTOR_GROUP_SIZE)
        {
          var selector = selectors.slice(i, i + SELECTOR_GROUP_SIZE).join(", ");
          style.sheet.addRule(selector, "display: none !important;");
        }
      };
    
      var updateStylesheet = function()
      {
        var selectors = null;
        var CSSPropertyFiltersLoaded = false;
    
        var checkLoaded = function()
        {
          if (!selectors || !CSSPropertyFiltersLoaded)
            return;
    
          if (observer)
            observer.disconnect();
          observer = null;
    
          if (tracer)
            tracer.disconnect();
          tracer = null;
    
          if (style && style.parentElement)
            style.parentElement.removeChild(style);
          style = null;
    
          addElemHideSelectors(selectors.selectors);
          propertyFilters.apply();
    
          if (selectors.trace)
            tracer = new ElementHidingTracer(document, selectors.selectors);
        };
    
        ext.backgroundPage.sendMessage({type: "get-selectors"}, function(response)
        {
          selectors = response;
          checkLoaded();
        });
    
        propertyFilters.load(function()
        {
          CSSPropertyFiltersLoaded = true;
          checkLoaded();
        });
      };
    
      updateStylesheet();
    
      document.addEventListener("error", function(event)
      {
        checkCollapse(event.target);
      }, true);
    
      // The CSS property filters approach won't work because we cannot find an
      // unambiguous CSS3 selector for an arbitrary element. We need to remove the
      // filters from the style sheet and apply them via JS.
    
      // For Yandex it should suffice to do this on document load, but in theory
      // it's possible to circumvent this by adding the element to the DOM
      // dynamically. Same issue with CSS property filters. How do we tackle it
      // there? If at all.
    
      document.addEventListener("load", function(event)
      {
        var element = event.target;
    
        if (/^i?frame$/.test(element.localName))
          checkCollapse(element);
    
        if (/\bChrome\//.test(navigator.userAgent))
        {
          var contentDocument = getContentDocument(element);
          if (contentDocument)
          {
            var contentWindow = contentDocument.defaultView;
            if (contentDocument instanceof contentWindow.HTMLDocument)
            {
              // Prior to Chrome 37, content scripts cannot run in
              // dynamically created frames. Also on Chrome 37-40
              // document_start content scripts (like this one) don't
              // run either in those frames due to https://crbug.com/416907.
              // So we have to apply element hiding from the parent frame.
              if (!("init" in contentWindow))
                init(contentDocument);
            }
          }
        }
      }, true);
    
      return updateStylesheet;
    }
    
    if (document instanceof HTMLDocument)
    {
      checkSitekey();
      window.updateStylesheet = init(document);
    J'ai quand même compris que ça venait d'adblock alors je l'ai désactiver et effectivement ça marche sauf qu'il me met une nouvelle erreur dans la console(qui n'affecte pas la bonne marche de ma page mais qui sort de nulle part :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    GET http://localhost/favicon.ico 404 (Not Found)


    le script js qui pose soucis est le suivant :

    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
     
    function loadJSON(){
     
     
     
    $.getJSON('./json/modif.json', function( data ) {
     
    var dom = document.getElementById('dropzone').children   
    var p 
    var maData
    var monDom
     
        for (var i = 0 ; i < data.length;i++){
        for (var f = 0 ; f < dom.length; f++){   
            maData= data[i]
            monDom= dom[f]
     
             if (monDom.id === maData.place ){
     
            var div = document.createElement('div')
            monDom.appendChild(div)
            monDom.className = 'full'
            div.id = maData.id
           div.className = maData.class
           div.setAttribute("place", maData.place)
           div.setAttribute("name", maData.name)
           div.setAttribute("value", maData.value)
           div.setAttribute("draggable", maData.draggable)
           div.setAttribute("ondragstart", maData.ondragstart)
     
           p = document.createElement('p')
           div.appendChild(p)
               if (div.className == 'droppedfile'){
                   if (div.getAttribute('name') != ''){
                       p.innerHTML = div.getAttribute('name')
                   } else {
                       p.innerHTML = 'fichier'
                   }
                }
            }
     
        }
    }
     
    })
    }
     
    /*$.get('./text/modif.txt', function( data ) {
        
        document.getElementById('dropzone').innerHTML = data
    })
           }*/
     
    $(document).ready(loadJSON());

  2. #2
    Membre émérite
    Avatar de badaze
    Homme Profil pro
    Chef de projets info
    Inscrit en
    Septembre 2002
    Messages
    1 412
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ain (Rhône Alpes)

    Informations professionnelles :
    Activité : Chef de projets info
    Secteur : Transports

    Informations forums :
    Inscription : Septembre 2002
    Messages : 1 412
    Points : 2 522
    Points
    2 522
    Par défaut
    C'est bizarre car chez moi il n'y a que Chrome qui accepte la fonction !?!?

    Chrome 56.0.2924.87 : ok

    Firefox 51.0.1 : ko
    IE 11 : ko
    Microsoft edge : ko

    Code html : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    <html>
    <head>
    <script>
    shadow = document.documentElement.createShadowRoot();
    alert(shadow);
    </script>
    </head>
    <body>
    </body>

    _____________________________________________________________________________________
    Chrome montre l'alert que j'ai mise donc ok.
    Nom : 20170224-chrome.jpg
Affichages : 496
Taille : 20,1 Ko

    _____________________________________________________________________________________

    Autres navigateurs... ko
    Nom : 20170224-edge.jpg
Affichages : 498
Taille : 43,1 Ko
    _____________________________________________________________________________________
    Nom : 20170224-ie11.jpg
Affichages : 477
Taille : 31,4 Ko
    _____________________________________________________________________________________
    Nom : 20170224-ff.jpg
Affichages : 467
Taille : 42,0 Ko
    _____________________________________________________________________________________
    Cela ne sert à rien d'optimiser quelque chose qui ne fonctionne pas.

    Mon site : www.emmella.fr

    Je recherche le manuel de l'Olivetti Logos 80B.

  3. #3
    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
    C'est obsolète : https://developer.mozilla.org/fr/doc...eateShadowRoot

    "Shadow DOM v1 spec" et "Custom elements v1 spec" sont très récents.

    Documentation de Chrome : https://developers.google.com/web/fu...mers/shadowdom

    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.)

  4. #4
    Expert éminent
    Avatar de Watilin
    Homme Profil pro
    En recherche d'emploi
    Inscrit en
    Juin 2010
    Messages
    3 093
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 35
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations professionnelles :
    Activité : En recherche d'emploi

    Informations forums :
    Inscription : Juin 2010
    Messages : 3 093
    Points : 6 754
    Points
    6 754
    Par défaut
    Sinon, problème ici :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    $(document).ready(loadJSON());
    Il faut enlever les parenthèses :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    $(document).ready(loadJSON);
    Autrement la fonction est appelée dès l’exécution du script, et non pas lorsque le document est prêt.

    Quant à l’erreur 404, c’est tout à fait normal, il ne faut pas s’en inquiéter. Les navigateurs font toujours une requête de favicon pour chaque site, à l’adresse par défaut /favicon.ico (on peut changer cette adresse avec une balise <link>). Visiblement ton localhost n’a pas de favicon à cette adresse.
    Tu peux demander à la console de Chrome de ne pas afficher les erreurs réseau.
    La FAQ JavaScript – Les cours JavaScript
    Touche F12 = la console → l’outil indispensable pour développer en JavaScript !

  5. #5
    Membre régulier
    Homme Profil pro
    Étudiant
    Inscrit en
    Mars 2012
    Messages
    161
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Biens de consommation

    Informations forums :
    Inscription : Mars 2012
    Messages : 161
    Points : 103
    Points
    103
    Par défaut
    Merci beaucoup pour les réponses j'ai pas tout compris comme ça en 1er lecture mais je vais enlever les parenthèses de mon loadJson

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Le temps d'exécution de vos scripts perl!!
    Par djibril dans le forum Langage
    Réponses: 5
    Dernier message: 17/06/2009, 10h42
  2. [Système] Exécution d'un script PHP à heures fixes
    Par Kiyomizu dans le forum Langage
    Réponses: 5
    Dernier message: 26/04/2006, 09h30
  3. Réponses: 2
    Dernier message: 21/04/2006, 15h40
  4. [CSV] Temps d'exécution d'un script
    Par Sangdrax1604 dans le forum Langage
    Réponses: 2
    Dernier message: 10/04/2006, 18h49
  5. Réponses: 6
    Dernier message: 29/11/2005, 13h22

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