JavaScript - 接触
2018-04-10 本文已影响0人
一世长安乱
JavaScript执行顺序机制,从上到下边解析边执行
浏览器对象window 弹出警告框
window.alert('helloword');
文档对象
document.write('helloword');
打印到控制台
这两个有什么区别没有查到,暂时就把他们定为一样的作用
console.info('helloword');
console.log('helloword');
内部引用JavaScript
<script type="text/javascript" charset="UTF-8">
// 在这里写代码
</script>
外部引用JavaScript
外部引用JavaScript在其中间再插入代码,代码无效
<script type="text/javascript" src="test.js" charset="UTF-8"></script>