Web js 技术

script在html中的摆放位置

不能将需要访问dom元素的js放在body之前,因为此时还没有开始生成dom,所以在body之前的访问dom元素的js会出错。eg:错的 <script> var a, b, x; a = 1; b = 2; x = a + b;...