JavaScript - 接触

JavaScript执行顺序机制,从上到下边解析边执行
浏览器对象window 弹出警告框
window.alert('helloword');
文档对象
document.write('helloword');
打印到控制台

这两个有什么区别没有查到,暂时就把他们定为一样的作用

console.info('helloword'); 
console.log('helloword');
内部引用JavaScript

外部引用JavaScript

外部引用JavaScript在其中间再插入代码,代码无效


你可能感兴趣的:(JavaScript - 接触)