当前位置:网站首页>003-JS-DOM-Attr-innerText

003-JS-DOM-Attr-innerText

2022-06-30 04:56:00 Qingcheng

JS-DOM-Attr-innerText

  • Get the Text Content .
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>01_dom_#attr_innerText</title>
</head>
<body>
<div id="app"><h1> I don't want to go to work today !</h1></div>
<script> let element = document.getElementById('app') let innerText = element.innerText; // I don't want to go to work today ! console.log(innerText) </script>
</body>
</html>
原网站

版权声明
本文为[Qingcheng]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/181/202206300446104296.html