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.
这可能是一个愚蠢的问题,但是 VS Code 是否可以在客户端 javascript 文件上设置断点并在调试时暂停?
谢谢!
您可以闯入客户端本身。
这可能不是你想要的。但是,您可以简单地在代码中添加调试器行,浏览器会在该行中断。
// some code here debugger // some more code here
只需确保您的 jshint 提醒您“忘记”调试器语句。