小码哥的IT人生

HTML DOM Article 对象

JavaScript基础 2022-05-13 16:16:09小码哥的IT人生shichen

HTML DOM Article 对象

Article 对象

Article 对象代表 HTML <article> 元素。

注释:Internet Explorer 8 以及更早的版本不支持 <article> 元素。

访问 Article 对象

您可使用 getElementById() 来访问 <article> 元素:

示例代码:

var x = document.getElementById("myArticle");

完整实例:

<!DOCTYPE html>
<html>
<body>
<h3>如何访问 ARTICLE 元素的演示</h3>
<article id="myArticle">
  <h1>Article Heading</h1>
  <p>Some article text..</p>
</article>
<p>点击按钮将文章内容的文字颜色设置为红色。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
  var x = document.getElementById("myArticle");
  x.style.color = "red";
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

创建 Article 对象

您可使用 document.createElement() 方法来创建 <article> 元素:

示例代码:

var x = document.createElement("ARTICLE");

完整实例:

<!DOCTYPE html>
<html>
<body>
<p>单击该按钮可创建包含 H1 和 P 元素的 ARTICLE 元素。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
  var x = document.createElement("ARTICLE");
  x.setAttribute("id", "myArticle");
  document.body.appendChild(x);
  var heading = document.createElement("H1");
  var txt1 = document.createTextNode("Heading in Article");
  heading.appendChild(txt1);
  document.getElementById("myArticle").appendChild(heading);
  var para = document.createElement("P");
  var txt2 = document.createTextNode("Paragraph in article.");
  para.appendChild(txt2);
  document.getElementById("myArticle").appendChild(para);
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

标准属性和事件

Article 对象支持标准属性事件

相关页面

HTML 参考手册:HTML <article> 标签

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024