setBreakpoint(3)
我使用(3
行号在哪里)设置了一个新断点。
如果我想删除它,我可以使用clearBreakpoint(3)
,但是如何删除以这种方式添加的所有断点?
setBreakpoint(3)
我使用(3
行号在哪里)设置了一个新断点。
如果我想删除它,我可以使用clearBreakpoint(3)
,但是如何删除以这种方式添加的所有断点?
这并不理想,但是,它有效。您可以使用以下内容 - 我将其保留为单行,因此您可以轻松复制它。注意:输出很难看,但它有效。
var i=500; while(i--){clearBreakpoint('/path/to/file/with/breakpoints.js', i); }
当然,首先确保将i
= 设置为文件中的行数,或者至少设置为最后一个带有断点的行数,以及您自己的文件路径。注意:如果您在设置断点时没有指定文件名,则可能不需要指定文件名。
扩展可读性:
var i = 500; // number of lines in file
while(i--){
// in my experiments, you *must* use the filename, but
// I had defined my filename when I set the breakpoints
clearBreakpoint('/path/to/file/with/breakpoints.js', i);
}