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.
为什么微软不能在 Visual Studio 中设置断点等同于在 javascript 中添加“调试器”关键字?我想以统一的方式测试javascript跨浏览器。
使用 debugger 关键字而不是设置断点。如果启用了调试器,它将中断...
debugger; //breakpoint here
至于为什么他们不工作。Firefox 不使用 MS 脚本引擎,因此 VS 调试器不会附加到 Firefox。
使用调试器;
或 Sys.Debug.assert() 如果断言失败,它将触发调试器语句