所有
我想要做的是在加载时在弹出窗口中为脚本添加断点。
例如:
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。