javascript中innerText和innerHTML 屬性用法執行個體分析_javascript技巧

來源:互聯網
上載者:User

本文執行個體講述了javascript中innerText和innerHTML 屬性用法。分享給大家供大家參考。具體分析如下:

幾乎所有DOM元素都有innerText,innertHTML 屬性(注意大小寫),分別是元素標籤內
的文本表示形式和HTML原始碼,這兩個屬性是可讀可寫的

innerHTML也可以取代createElement,屬於簡單,粗放型,後果自負的建立

<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>測試(innerText和innerHTML)</title> <script type="text/javascript"> function TestOutput() {  var myLink = document.getElementById("lnk");  alert('innerText-->' + myLink.innerText);  //得到百度網站  alert('innerHTML-->' + myLink.innerHTML);  //得到百<font color="red">度</font>網站 } function EditInnerText() {  var myLink = document.getElementById("lnk");  myLink.innerText = "鳳凰網"; } function EditInnerHTML() {  var myLink = document.getElementById("lnk");  myLink.innerHTML = "<font color='blue'>鳳凰網</font>"; } function dynamicButtonClick() {  alert('我是動態建立的'); } function CreateButton() {  var div = document.getElementById("divMain");  div.innerHTML = "<input type='button' value='單擊我'   onclick='dynamicButtonClick()' />"; } </script></head><body><a href="http://www.baidu.com" id="lnk">百<font color="red">度</font>網站</a><input type ="button" value="測試" onclick="TestOutput()"/><input type="button"" value="修改InnerText" onclick="EditInnerText()"/><input type="button"" value="修改InnerHTML" onclick="EditInnerHTML()"/><div id="divMain"></div><input type="button" value="動態添加按鈕" onclick="CreateButton()"/></body></html>

希望本文所述對大家的javascript程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.