在做云笔记项目的过程中,除了服务端在eclipse中debug调试代码外,有时候需要在浏览器端也需要进行debug调试,刘老师举了一个冒泡排序算法的dubug例子,进行了讲解. 首先上浏览器端测试代码: //实行冒泡排序 function demo(){ var ary=[1,5,10,3,7,99,2,8,9]; sort(ary); console.log(ary); } //冒泡排序具体实现 function sort(ary){ for(var i=0;i<ary.length-1;i+
If you’ve installed the latest version of Google Chrome, and you are having a problem debugging your Flash in it, there’s a reason. As you may have heard, Chrome now comes pre-installed with the Flash player. For good reasons, this is not the debug v
搜索ctrl+p:搜索Sources面板中指定的文件:然后在主窗口文件标签右键选择reveal in navigator可以在目录中显示当前文件.ctrl+f:搜索devtool主显示窗口所在文件的指定字符:ctrl+shift+o:搜索所在文件的函数定义或选择器:ctrl+shift+f:支持大小写和正则,搜索当前页面加载的所有文件中的指定字符. DOM节点变化时触发断点具体触发条件可分3种情况:子节点有变化.节点的属性发生变化或这个节点被删除.可以快速找到对应的事件处理函数. 条件断点写一个