Jump to content
  • 0

Не понятки с SetTimeout


like-nix
 Share

Question

Здравствуйте,

 

Я читал “Современный учебник JavaScript ->Документ и объекты страницы->Навигация по DOM-элементам”.

 

Там в статье есть интерактивный пример навигации в главе “ Интерактивное путешествие”.

 


 

Мне стало интересно как он работает, и я его вытащил. И странно что у меня он не заработал так как был реализован на сайте. Я его немного исправил и он заработал. А точнее в конце скрипта файла travel.js, я заменил строки. Закомментировал setTimeout, и написал просто init:

 



  if (iframe.contentDocument.readyState == 'complete') {
    //setTimeout(init, 2000);
init();
  } else {
    iframe.contentWindow.onload = function() {
      //setTimeout(init, 2000);
 init();
    };
  }


 

Вот функция init

 



  function init() {
    iframeDoc = iframe.contentDocument;
    currentElement = iframeDoc.documentElement;


    elem.onclick = function(e) {
      var dir = e.target.getAttribute('data-travel-dir');
      if (!dir) return;


      if (currentElement && currentElement.style) {
        currentElement.style.border = '';
      }


      currentElement = currentElement[dir];


      updateControls();


      if (currentElement && currentElement.style) {
        currentElement.style.border = '1px green solid';
      }
    };


    updateControls();
  }


 

Если запустить пример на который, я дал ссылку ниже, то в консоли отладки Google Chrome будет сообщение: Uncaught SecurityError: Failed to read the 'contentDocument' property from 'HTMLIFrameElement': Blocked a frame with origin "null" from accessing a frame with origin "null". Protocols, domains, and ports must match.

 

Функция init запускается с SetTimeout, но у iframe атрибут contentDocument равен Exception: DOMException:

 

Помогите пожалуйста разобраться зачем тут SetTimeout?

 

Не понял как к теме прикрепить файл, поэтому даю ссылку на внешний источник на google drive


Edited by like-nix
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Тут setTimeout вообще не при чём. Просто вы скрипт видимо просто так запускаете (не с сервера) из-за этого document.domain  у вас null. Браузер считает, что вы пытаетесь нарушить систему безопасности и блокирует доступ к документу, загруженному в <iframe>.

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy