1 Star 0 Fork 1

飘零雪/JavaScript基础学习笔记

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
65.debug.html 935 Bytes
一键复制 编辑 原始数据 按行查看 历史
markrenChina 提交于 2021-05-29 23:11 +08:00 . first commit
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script>
/*
使用谷歌调试,F12——sources——65.debug.html——选中第一行点刷新,查看watch——选中
a b d fun右键鼠标,点击add selected text to watches(将被选择的文本添加到监视)
——点击一个有弧度的箭头step over next function call(跳过下一个函数调用)
使用火狐调试,F12——调试器——65.debug.html——选中第一行点刷新——鼠标移到a b d fun
监视——F10跨越(有弧度的箭头)
*/
alert(d);
var a = 10;
var b = "hello";
c = true;
function fun() {
alert("hello");
}
var d = 20;
</script>
</head>
<body>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zhenggb2010/java-script-notes.git
git@gitee.com:zhenggb2010/java-script-notes.git
zhenggb2010
java-script-notes
JavaScript基础学习笔记
master

搜索帮助