zhangdizhangdi

Chrome Sources

Chrome Sources调试按钮
图:Chrome Sources调试按钮

  1. Resume/Pause script excution
    • 跳到下一个断点位置/继续执行脚本
  2. Step over next function call
    • 当前行若有函数调用,不会进入该函数
  3. Step into next function call
    • 当前行若有函数调用,则会进入该函数
  4. Step out of current function
    • 继续执行当前函数内的剩余代码,并暂停在调用当前函数的下一行代码处
  5. Step