HTML DOM Figure 对象
JavaScript基础 2022-05-13 16:18:33小码哥的IT人生shichen
HTML DOM Figure 对象
Figure 对象
Figure 对象代表 HTML <figure> 元素。
访问 Figure 对象
您可使用 getElementById()
来访问 <figure>
元素:
示例代码:
var x = document.getElementById("myFigure");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>如何访问 Figure 元素的演示</h3>
<p>郁金香(学名:Tulipa gesneriana)是百合科郁金香属的一个栽培种,又称洋荷花、旱荷花。</p>
<figure id="myFigure">
<img src="/i/photo/tulip.jpg" alt="The Tulip" width="300" height="300">
</figure>
<p>单击按钮以获取 Figure 元素的 id。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myFigure").id;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Figure 对象
您可使用 document.createElement()
方法来创建 <figure>
元素:
示例代码:
var x = document.createElement("FIGURE");
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>单击该按钮来创建一个包含 IMG 元素的 Figure 元素。</p>
<button onclick="myFunction()">试一试</button><br><br>
<script>
function myFunction() {
var x = document.createElement("FIGURE");
x.setAttribute("id", "myFigure");
document.body.appendChild(x);
var y = document.createElement("IMG");
y.setAttribute("src", "/i/photo/tulip.jpg");
y.setAttribute("width", "300");
y.setAttribute("width", "300");
y.setAttribute("alt", "The Tulip");
x.appendChild(y);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
相关页面
HTML 参考手册:HTML <figure> 标签