HTML DOM Legend 对象
JavaScript基础 2022-05-13 16:21:07小码哥的IT人生shichen
HTML DOM Legend 对象
Legend 对象
Legend 对象表示 HTML <legend>
元素。
访问 Legend 对象
您可以通过使用 getElementById()
来访问 <legend>
元素:
var x = document.getElementById("myLegend");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何访问 LEGEND 元素</h3>
<fieldset>
<legend id="myLegend">Personalia:</legend>
Name: <input type="text">
</fieldset>
<p>点击按钮来获得 legend 元素的文本。</p>
<p id="demo"></p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.getElementById("myLegend").textContent;
document.getElementById("demo").innerHTML = x;
}
</script>
<p><b>注释:</b>Internet Explorer 8 以及更早的版本不支持 textContent 属性。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Legend 对象
您可以通过使用 document.createElement()
方法来创建 <legend>
元素:
var x = document.createElement("LEGEND");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何创建 LEGEND 元素</h3>
<p>点击按钮来创建含有文本的 LEGEND 元素。</p>
<fieldset id="myFieldset">
Name: <input type="text">
</fieldset><br>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.createElement("LEGEND");
var t = document.createTextNode("Personalia:");
x.appendChild(t);
document.getElementById("myFieldset").appendChild(x);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html