Blogger Information
Blog 250
fans 3
comment 0
visits 321537
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
JS--表格添加的相关实现
梁凯达的博客
Original
1407 people have browsed it

实例

<!DOCTYPE html>
<html lang="zh">
<head>
	<meta charset="UTF-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1.0" />
	<meta http-equiv="X-UA-Compatible" content="ie=edge" />
	<title>Document</title>
</head>
<body>
<table border="1" width="800" align="center" id="mytab"></table>
</body>
<script type="text/javascript">
	//找表格对象
	var mytab = document.getElementById('mytab');
	//添加行
	//创建也有添加作用
	var row = mytab.insertRow();
	//添加单元格
	var td1 = row.insertCell();
	td1.innerHTML = '这个是单元格1';
	var td2 = row.insertCell();
	td2.innerHTML = '这个是单元格2';
	var td3 = row.insertCell();
	td3.innerHTML = '这个是单元格3';
</script>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post