HTML DOM Aside 对象
JavaScript基础 2022-05-13 16:16:12小码哥的IT人生shichen
HTML DOM Aside 对象
Aside 对象
Aside 对象代表 HTML <aside> 元素。
注释:Internet Explorer 8 以及更早的版本不支持 <aside> 元素。
访问 Aside 对象
您可使用 getElementById() 来访问 <aside> 元素:
示例代码:
var x = document.getElementById("myAside");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>如何访问 ASIDE 元素的演示</h3>
<p>"My family and I visited The Epcot center this summer."</p>
<aside id="myAside">
<h4>Epcot Center</h4>
<p>The Epcot Center is a theme park in Disney World, Florida.</p>
</aside>
<p>Click the button to set the text color of the aside content to red.</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
var x = document.getElementById("myAside");
x.style.color = "red";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Aside 对象
您可使用 document.createElement() 方法来创建 <aside> 元素:
示例代码:
var x = document.createElement("ASIDE");
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>单击该按钮可创建包含 H4 和 P 元素的 ASIDE 元素。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
var x = document.createElement("ASIDE");
x.setAttribute("id", "myAside");
document.body.appendChild(x);
var heading = document.createElement("H4");
var txt1 = document.createTextNode("Epcot Center");
heading.appendChild(txt1);
document.getElementById("myAside").appendChild(heading);
var para = document.createElement("P");
var txt2 = document.createTextNode("The Epcot Center is a theme park in Disney World.");
para.appendChild(txt2);
document.getElementById("myAside").appendChild(para);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
相关页面
HTML 参考手册:HTML <aside> 标签