首页 > 代码库 > js(外部的javascript)

js(外部的javascript)

<html><body><h1>My Web Page</h1><p id="demo">A paragraph</p><button type="button"  onclick="myFunction()">clike here</button><p><b>注释:</b>myFunction()保存在名为"myScript"的外部文件当中</p><script type="text/javascript" src="myScript.js"></script></body></html>
function myFunction(){	x=document.getElementById("demo");	x.innerHTML="you see";}

需要使用外部文件,需要在<script>标签的"scr"属性中设置.js文件路径,  

我的这些文件全部在桌面,路径是C:\Users\lt\Desktop\javascript,起初src="http://www.mamicode.com/Users/lt/Desktop/javascript/myScript.js"

经过试验几次,发现默认.js文件跟.html处于同一目录下,所以src="http://www.mamicode.com/mySricpt.js"即可,此外外部的javaScript不能包含<script>标签