js css 前端调试工具使用记录

一、常用调试工具;
    1、chrome 调试工具devtools
      ①:可以在console 里写js代码;
      
console.log("hello world");

      
       var img =new Image();
       img.onload=function(){
           debugger;
       }
       img.src="http://www.baidu.com/img/bd_logo1.png";

       写完后就可以回车,自动执行这段代码了。
      
       chrome是shift + enter键进行换行,IE和FF有多行模式
       

js css 前端调试工具使用记录_第1张图片
      

js css 前端调试工具使用记录_第2张图片


二、问题

你可能感兴趣的:(JavaScript,chrome)