Đặc tính HTML DOM innerHTML

Đặc tính HTML DOM innerHTML

Định nghĩa và sử dụng
Đặc tính innerHTML thiết lập hay trả về nội dung HTML (inner HTML) của một phần tử.
Cú pháp
Trả về đặc tính inner HTML

HTMLElementObject.innerHTML=text

Các giá trị đặc tính

Giá trị                       Mô tả
text                 Chỉ ra nội dung HTML của một phần tử

Ví dụ:

<!DOCTYPE html>
<html>
<body>
<h1>The Element Object</h1>
<h2>The innerHTML Property</h2>

<p id=”myP”>I am a paragraph.</p>

<p>The content of “myP” is:</p>
<p id=”demo”></p>

<script>
let html = document.getElementById(“myP”).innerHTML;
document.getElementById(“demo”).innerHTML = html;
</script>

</body>
</html>

 

Xem kết quả:
https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_element_innerhtml_p

Chia sẻ

Leave a Reply

Your email address will not be published. Required fields are marked *