HTML DOM innerHTML 属性
JavaScript基础 2022-06-08 17:16:44小码哥的IT人生shichen
HTML DOM innerHTML 属性
定义和用法
innerHTML 属性可设置或返回单元格的开始标签和结束标签之间的 HTML。
语法
tabledataObject.innerHTML=text
实例
下面的例子返回了表元的 inner HTML:
<html>
<head>
<script type="text/javascript">
function alertInnerHTML()
{
alert(document.getElementById("td1").innerHTML
);
}
</script>
</head>
<body>
<table border="1">
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td id="td1">Peter</td>
<td id="td1">Griffin</td>
</tr>
</table>
<br />
<input type="button" onclick=alertInnerHTML()
value="Alert innerHTML" />
</body>
</html>
TIY
完整实例【取得表元的 inner HTML】:
<html>
<head>
<script type="text/javascript">
function alertInnerHTML()
{
alert(document.getElementById("td1").innerHTML);
}
</script>
</head>
<body>
<table border="1">
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td id="td1">Peter</td>
<td id="td1">Griffin</td>
</tr>
</table>
<br />
<input type="button" onclick=alertInnerHTML() value="Alert innerHTML" />
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html