innerHTML,outerHTML,innerText,textContent

innerHTML,outerHTML,innerText,textContent
<span style="color:red">test1</span> test2 ”
innerHTML,outerHTML,innerText,textContent

test.innerHTML(所有浏览器支持):

  “<span style="color:red">test1</span> test2 ”
test.outerHTML(所有浏览器支持)
  除了包含innerHTML的全部内容外, 还包含对象标签本身。 
  上例中的text.outerHTML的值也就是<div id="test"><span style="color:red">test1</span> test2</div> 
test.innerText(IE仅支持): 
  从起始位置到终止位置的内容, 但它去除Html标签
  上例中的text.innerTest的值也就是“test1 test2”, 其中span标签去除了。 

test.textContent(除了IE都支持):

  从起始位置到终止位置的内容, 但它去除Html标签
  上例中的text.innerTest的值也就是“test1 test2”, 其中span标签去除了。 所以同IE的innerText。

innerHTML,outerHTML,innerText,textContent,布布扣,bubuko.com

innerHTML,outerHTML,innerText,textContent

上一篇:JavaScript prototype原型链介绍


下一篇:在生成 Visual c + + 2005年或从 DLL 文件中使用 CString 派生的类的 Visual c + +.net 应用程序时,您可能会收到 LNK2019 错误消息