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>
VUE