大概意思是,如果你想在html内添加一段js内容,使用document.write 是直接把脚本内容写到页面上 然后由浏览器自己执行,但是这样会改变原有的html结构,也就是 在html页面上会有一段 js 内容,行为和表现层分离正是说,需要把js单独拎出来 与html界面结构分开存放。所以引用js 最好的方法是在html里用script标签,而不是用document.write来强行写一段js内容到html里。即使要写,也是用 document.write(<script>......</script>) 这种方式 ,而不是document.write(var a = xx ; function a (){}) 这种方式。