javascript中的innerHTML是什麼意思,怎麼個用法?

來源:互聯網
上載者:User

標籤:first   head   innerhtml   字元   vps   pst   com   row   pyw   

innerHTML在JS是雙向功能:擷取對象的內容  或  向對象插入內容;
如:<div id="aa">這是內容</div> ,我們可以通過 document.getElementById(‘aa‘).innerHTML 來擷取id為aa的對象的內嵌內容;
也可以對某對象插入內容,如 document.getElementById(‘abc‘).innerHTML=‘這是被插入的內容‘; 這樣就能向id為abc的對象插入內容



對於innerHTML 屬性,幾乎所有的元素都有innerHTML 屬性,它是一個字串,用來設定或擷取位於對象起始和結束標籤內的HTML。(擷取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"><td>Firstname</td><td>Lastname</td></tr>

<tr id="tr2"><td>Peter</td><td>Griffin</td></tr>

</table>

<input type="button" onclick="getInnerHTML()" value="Alert innerHTML of table row" />

</body>

</html>

javascript中的innerHTML是什麼意思,怎麼個用法?

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.