Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用任何 JS 开发工具有没有办法以编程方式创建调试器断点?我正在使用 chrome,但不介意切换到支持该功能的不同环境。
它从未如此简单。在 JS 中任何你想要的地方放置语句:
debugger;
如果 Chrome 调试器已打开,它将在那里中断。
使用 alert() ,这应该可以解决问题。