天天看點

js 寫一個table

學Js 有一段時間了。。但是感覺學的散散的,剛好看到實驗室桌子上有本<<Javascript 進階程式設計 >>  就拿來看看 裡面js 關于dom 基礎的知識,就嘗試了寫。好吧。。其實我是要看正規表達式的。

<html>
	<head>
	<script type = "text/javascript">
		function Test(){
			//alert("11");
			var table = document.createElement("table");
			table.setAttribute("border","1");
			table.setAttribute("width","100%");
			var body = document.createElement("tbody");
			table.appendChild(body);
			body.insertRow(0);
			body.rows[0].insertCell(0);
			body.rows[0].cells[0].appendChild(document.createTextNode("1,1"));
			body.rows[0].insertCell(1);
			body.rows[0].cells[1].appendChild(document.createTextNode("1,2"));
			document.body.appendChild(table);
		}
	</script>
	</head>
	<body onload = "Test()">
	</body>
</html>
           
js