開発者ツール - vs2017 javascript デバッグ
Javascript:IEを使用してデバッグしているときに「ソースコードはこのロケーションでは使用できません」msg (1)
私はIE 8の開発ツールを使用していくつかの問題をデバッグしようとしています。
しかし、以下のコードを実行した後、デバッガは "この場所で利用できないソースコード"
window.onload = function() {
tabberAutomatic(tabberArgs);
};
どういう意味ですか ?
上のコードは、ドキュメントが読み込まれたら、基本的にtabberAutomatic関数を実行する以下のコードの一部です:
/* 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);
};
}
以前の質問ブラウザで説明した問題をデバッグしようとしていますが、ページがロードされてもプログレスバーが進行中であることを示しています
入力をありがとう!