2011-12-14 14 views
4

IE 8の開発ツールを使用していくつかの問題をデバッグしようとしています。Javascript:IEのデバッグ中にmsgstr "ソースコードが利用できません" msg

ただし、以下のコードを実行した後、デバッガがエラー「この場所のソースコードが入手できない」

window.onload = function() { 
    tabberAutomatic(tabberArgs); 
}; 

を投げ、それは何を意味するのでしょうか?

/* This function adds tabberAutomatic to the window.onload event, 
    so it will run after the document has finished loading. 
    */ 
    var oldOnLoad; 

    if (!tabberArgs) { tabberArgs = {}; } 

    /* Taken from: http://simon.incutio.com/archive/2004/05/26/addLoadEvent */ 

    oldOnLoad = window.onload; 
    if (typeof window.onload != 'function') { 
    window.onload = function() { 
     tabberAutomatic(tabberArgs); 
    }; 
    } else { 
    window.onload = function() { 
     oldOnLoad(); 
     tabberAutomatic(tabberArgs); 
    }; 
    } 

私はデバッグの問題にしようとしています、私の前の質問で説明した入力に対するbrowser showing progress bar as still progressing even when the page is loaded

感謝を:上記のコード

は、文書が読み込み完了した後、基本的機能tabberAutomaticを実行し、以下のコードの一部であります!!

+0

@mgraphを::

は、あなたがそれをたくさん説明して、このを試してみました、私が述べたように、私が言及したエラーは、行の実行後に来ます。すなわちセミコロンの後に。 – Nik

答えて

関連する問題