1. 直接输出文字: document.write("<显示的类型>显示文字</类型>"); <script>document.write("<h1>This is a heading</h1>"); //This is a heading以h标题字形式显示document.write("<p>This is a paragraph.</p>"…
平时面试经常会遇到类似下面的这种题,而且千变万化,让人一个头两个.示例这道题算是稍微有点难度的了,这种题考查的是JavaScript引擎执行代码的步骤. b = 'cba'; function a(a, a){ console.log(a); console.log(b); var b = 'abc'; a(); function a(){ console.log(a); console.log(b); } } a(5,10); 先上理论: (1)分析脚本的执行过程,也就是全局作用域下的代码.…