<!DOCTYPE?html>
<html>
?<head>
??<title>?new?document?</title>??
??<meta?http-equiv="Content-Type"?content="text/html;?charset=gbk"/>???
??<script?type="text/javascript">??
????function?writeDiv(){
????????document.getElementById('body').innerHTML="div的內容為nnn";
????}
????
????function?writeSpan(){
????????document.getElementById('span').innerHTML="span的內容為nns";
????}
??</script>?
?</head>?
?<body>?
????<div?id="body"></div>
????<div?id="span"></div>
????<input?type="button"?value="修改div的值"?onclick="writeDiv()">?
????<input?type="button"?value="修改span的值"?onclick="writeSpan()">?
?</body>
</html>