当前位置:Gxlcms > html代码 > innerhtml用法是什么?

innerhtml用法是什么?

时间:2021-07-01 10:21:17 帮助过:51人阅读

innerHTML 属性设置或返回表格行的开始和结束标签之间的 HTML。

语法

tablerowObject.innerHTML=HTML

实例

下面的例子返回了表格行的 inner HTML:

<html>
<head>
<script type="text/javascript">
function getInnerHTML()
  {
  alert(document.getElementById("tr1").innerHTML);
  }
</script>
</head>
<body>
<table border="1">
<tr id="tr1">
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr id="tr2">
<td>Peter</td>
<td>Griffin</td>
</tr>
</table>
<br />
<input type="button" onclick="getInnerHTML()" 
value="Alert innerHTML of table row" />
</body>
</html>

相关推荐:《HTML教程》《javascript教程》

本篇文章就是关于innerhtml用法的介绍,希望对需要的朋友有所帮助!

以上就是innerhtml用法是什么?的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行