《2018年9月12日》【连续344天】
标题:js入门;
内容:
1. 结构,样式,行为相分离;
2.js的变量就像python和java折中了一下:
<body>
<script type="text/javascript" src="l8.js">
// document.write('hello world!!!');
</script>
</body>
document.write('hello world!!!');
var a;
a = 100;
document.write(a);
// 原始值 stack
// Number Boolean String undefined null
// 引用值 heap
// array Object function ... date RegExp
2万+

被折叠的 条评论
为什么被折叠?



