日期:2014-05-16 浏览次数:20668 次
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script type="text/javascript">
        window.onload = function () {
            var oDiv = document.getElementById("div1");
            var table = document.createElement("table");
            oDiv.appendChild(table);
            var tr = document.createElement("tr");
            table.appendChild(tr);
            var td = document.createElement("td");
            tr.appendChild(td);
            var p = document.createTextNode("hello,world");
            td.appendChild(p);
            td = document.createElement("td");
            tr.appendChild(td);
        }
    
    </script>
</head>
<body>
<div id="div1"></div>
</body>
</html>