如何在Chrome中的新弹出窗口中调试脚本

时间:2015-04-30 16:38:20

标签: google-chrome debugging popup google-chrome-devtools

所有

我想要做的是在加载时在弹出窗口中为脚本添加断点。

例如:

index.html

<a target="_blank" href="popupwindow.html">Open new popup window</a> 

popupwindow.html
<script>
    console.log("Start loading");
    // Could anyone show me how to break at the debugger line?
    debugger; 
    alert("finished");
</script>

我想点击index.html中的链接,popupwindow可以在调试器行停止,任何人都可以帮忙吗? 我使用的是Chrome42。

0 个答案:

没有答案