<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""
http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<script>
window.onload = function(){
var oDiv= document.createElement('div');//创建div
oDiv.id="ooDiv";//设置id
oDiv.innerHTML="hello"; //添加文本
document.body.appendChild(oDiv);
alert(document.getElementById("ooDiv").innerHTML);//显示id的内容
}
</script>
</head>
<body>
</body>
</html>