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.
我正在使用 IE9。我真的很喜欢 F12 调试控制台。我可以输入 JavaScript 代码来试用,而无需创建文件并由服务器加载它。
但是,我无法在控制台中的这段代码上设置断点。我应该怎么办?
您需要确保已开始调试(脚本->开始调试),然后您可以使用调试器关键字,这将导致调试器中断。
var x = 0; debugger; x++;