js中innerHTML,textHTML,value的区别

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

也就是从对象的起始位置到终止位置的全部内容,包括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>

 

 

弹出的结果是: <th>Firstname</th>

<th>Lastname</th>




value 属性可设置或返回密码域的默认值。

innerText:  从起始位置到终止位置的内容, 但它去除Html标签 

实例:
<div id="test">
   <span style="color:red">test1</span> test2
</div>

innerTest的值也就是“test1 test2”, 其中span标签去除了。

注意:在IE和火狐中,innerHTML是通用的 ,innerText、outText、outHTML只能在ie下使用。
也就是说,innerHTML是符合W3C标准的属性,而innerText只适用于IE浏览器,因此,尽可能地去使用innerHTML,而少用innerText,如果要输出不含HTML标签的内容,可以使用innerHTML取得包含HTML标签的内容后,再用正则表达式去除HTML标签,


附加: outerHTML:
除了包含innerHTML的全部内容外, 还包含对象标签本身。
上例中的text. outerHTML的值也就是<div id="test"><span style="color:red">test1</span> test2</div>





 

你可能感兴趣的:(js中innerHTML,textHTML,value的区别)