<body>
<table id='test'> //定义一个table
<tr>
<td></td><td></td>
</tr>
</table>
<script>
var tb = document.getElementById('test')//获取表格的dom节点
var td = tb.rows[0].cells[0]//获取0行0列的td单元格
td.innerHTML = '222'//动态修改表格的内容为222
</script>
</body>
思路:
1、获取表格的dom节点
2、通过rows和cells定位td单元格
3、通过修改innerHTML
扩展资料:JS实现动态表格的新增,修改,删除操作
一、相关JS函数
function setParamslist() {
var tab = document.getElementById("tab")
//表格行数
var rows = tab.rows.length
//表格列数
var cells = tab.rows.item(0).cells.length
//alert("行数"+rows+"列数"+cells)
var rowData = ""
for(var i=1i<rowsi++) {
var cellsData = new Array()
for(var j=0j<cells-1j++) {
cellsData.push(tab.rows[i].cells[j].innerText)
}
rowData = rowData + "|" + cellsData
}
document.getElementById("paramslist").value = rowData
}
//打开相关新增应用参数界面
function openAppParamsPage() {
var param = new Object()
//这个参数一定要传。
param.win = window
param.id = 100
param.name = "test"
param.birthday = new Date()
var result = window.showModalDialog("addParamsItem","dialogWidth:500pxdialogHeight:600pxdialogLeft:200pxdialogTop=200px")
//var temp = document.getElementById("paramslist").value
//document.getElementById("paramslist").value = temp + result
addSort(result)
}
// 增加应用参数函数
function addSort(data) {
var name = data
if(name == ""||name==undefined ) {
return
}
console.log(data)
var params = data.split(",")
var paramName = params[0]
var paramCode = params[1]
var paramValue = params[2]
var row = document.createElement("tr")
row.setAttribute("id", paramCode)
var cell = document.createElement("td")
cell.appendChild(document.createTextNode(paramName))
row.appendChild(cell)
cell = document.createElement("td")
cell.appendChild(document.createTextNode(paramCode))
row.appendChild(cell)
cell = document.createElement("td")
cell.appendChild(document.createTextNode(paramValue))
row.appendChild(cell)
var deleteButton = document.createElement("input")
deleteButton.setAttribute("type", "button")
deleteButton.setAttribute("value", "删除")
deleteButton.onclick = function () { deleteSort(paramCode)}
cell = document.createElement("td")
cell.appendChild(deleteButton)
row.appendChild(cell)
document.getElementById("sortList").appendChild(row)
}
// 删除应用参数函数
function deleteSort(id) {
if (id!=null){
var rowToDelete = document.getElementById(id)
var sortList = document.getElementById("sortList")
sortList.removeChild(rowToDelete)
}
}
二、弹出框页面,新增或者修改参数,并回写相关数据。
<!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>
<meta http-equiv="Content-Type" content="text/htmlcharset=utf-8" />
<title>新增应用</title>
<#include "/views/head.html"/>
</head>
<body>
<div class="body-box">
<div class="clear"></div>
<form >
<table width="100%" cellspacing="1" cellpadding="2" border="0" class="pn-ftable">
<tr>
<td>参数名称:</td>
<td class="pn-fcontent"><input type="text" maxlength="20" class="" required="true" id="paramName" name="paramName"/></td>
</tr>
<tr>
<td>参数编码:</td>
<td class="pn-fcontent"><input type="text" maxlength="20" class="" required="true" id="paramCode" name="paramCode" required="true" /></td>
</tr>
<tr>
<td>参数值:</td>
<td class="pn-fcontent"><input type="text" maxlength="20" class="" required="true" id="paramValue" name="paramValue" required="true" /></td>
</tr>
<tr>
<td align="center" colspan="4">
<input type="submit" value="保存" onclick="returnResult()"/>
<input type="button" value="返回" onclick="closeWindow()"/>
</td>
</tr>
</table>
</form>
</div>
</body>
</html>
<script type="text/javascript">
//直接关闭窗口
function closeWindow() {
window.close()
}
//获取值,组装后返回
function returnResult() {
if(!$('form').valid())
return
var paramName = document.getElementById("paramName")
var paramCode = document.getElementById("paramCode")
var paramValue = document.getElementById("paramValue")
//alert("value is " + paramName.value + "," + paramCode.value + "," + paramValue.value)
var result = paramName.value + "," + paramCode.value + "," + paramValue.value
window.returnValue = result
window.close()
}
</script>
用javascript动态修改表格内容,先来看JS部分代码:<script>
var arr=new Array()
arr[0]="这是改变后的内容一"
arr[1]="这是改变后的内容二"
arr[2]="这是改变后的内容三"
</script>
把切换后的内容写在了JavaScript的数组里,这样方便。
使用上面的JavaScript:
<select onchange="zz.cells[this.selectedIndex].innerHTML=arr[this.selectedIndex]">
<option value=a>改变第一格</option>
<option value=a>改变第二格</option>
<option value=a>改变第三格</option>
</select>
<table id=zz border=1>
<tr height=20>
<td width=220>第一格</td>
<td width=220>第二格</td>
<td width=220>第三格</td>
</tr>
</table>
把以上代码放入网页的<body></body>区间内即可。
js动态改变元素内容分两步。
选择器确定好这个元素,不管是用document.getElementById("id")还是其他的都可以.
第二、确定好元素了,只要知道某种标签对应值是哪个属性控制的。只需要改一下对应属性值就可以了。拿你说的td元素来说,里面的内容对应的属性是innerText()。
所以可以使用document.getElementById("td的id值").innerText("想要修改为的值")即可。
希望能够帮助到您,谢谢。