小码哥的IT人生

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

Legend 对象属性

属性 描述
form 返回对包含 legend 的表单的引用。

标准属性和事件

Legend 对象支持标准属性事件

相关页面

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

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

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

苏公网安备 32030202000762号

© 2021-2024