//html里面
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript" src="myScript.js"></script>
</head>
<body>
<h1>My Web Page</h1>
<p id="demo">呜呜呜呜呜 A Paragraph.</p>
<button type="button" onclick="myFunction()">点击这里</button>
<p><b>注释:</b>myFunction 保存在名为 "myScript.js" 的外部文件中。</p>
</body>
</html>
//外部js文件
function myFunction()
{
document.getElementById("demo").innerhtml="哈哈哈呵呵 My First JavaScript Function";
}//JavaScript Document
这个不好使呀
guozhchun
相关分类