“Un-redefining” Google Chrome's console Object

后端 未结 7 686
失恋的感觉
失恋的感觉 2020-12-31 06:58

I\'m dealing with a system where the following Javascript code (which is out of my control) is being executed early in the page

if (!(\"console\" in window)          


        
7条回答
  •  囚心锁ツ
    2020-12-31 07:33

    This seems to work:

    iframe = document.createElement('iframe');
    document.body.appendChild(iframe);
    console = iframe.contentWindow.console;
    

    However it looks like you cannot remove the iframe

提交回复
热议问题