1.js有两种引入方式,外链和内嵌;
内嵌在浏览中直接调试,外链要在断点处写debugger;
示例代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>js简单调试</title>
</head>
<body>
<script type="text/javascript">
var i=1;
while(i<10){
if(i==2){
break;//continue
}
document.write(i+"<br>");
i++;
}
</script>
</body>
</html>
2.浏览器操作;
google浏览器按下F12键,找到sources;调试断点在行号9,然后按F8可依次执行操作,直到整个循环结束;