HTML DOM Summary 对象
JavaScript基础 2022-05-13 16:23:03小码哥的IT人生shichen
HTML DOM Summary 对象
Summary 对象
Summary 对象代表 HTML <summary>
元素。
注释:目前只有 Chrome、Safari 6+ 以及 Opera 15+ 支持 <summary>
元素。
访问 Summary 对象
您可使用 getElementById()
来访问 <summary>
元素:
示例代码:
var x = document.getElementById("mySummary");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>如何访问 summary 元素的演示</h3>
<details>
<summary id="mySummary">Copyright 2006-2021.</summary>
<p> - by Ykinvestment. All Rights Reserved.</p>
</details>
<p>点击“试一试”按钮,获取 summary 元素的 HTML 内容。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注释:</b>summary 元素目前仅在 Chrome、Safari 6+ 和 Opera 15+ 中受支持。</p>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("mySummary").innerHTML;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Summary 对象
您可使用 document.createElement()
方法来创建 <summary>
元素:
示例代码:
var x = document.createElement("SUMMARY");
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>单击该按钮可创建 DETAILS、SUMMARY 和 P 元素。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注释:</b>details 和 summary 元素目前仅在 Chrome、Safari 6+ 和 Opera 15+ 中受支持。</p>
<script>
function myFunction() {
var x = document.createElement("DETAILS");
document.body.appendChild(x);
var summaryElmnt = document.createElement("SUMMARY");
var txt1 = document.createTextNode("Copyright 2006-2021.");
summaryElmnt.appendChild(txt1);
var pElmnt = document.createElement("P");
var txt2 = document.createTextNode(" - by Ykinvestment. All Rights Reserved.");
pElmnt.appendChild(txt2);
x.appendChild(summaryElmnt);
x.appendChild(pElmnt);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html