HTML DOM Span 对象
JavaScript基础 2022-05-13 16:22:52小码哥的IT人生shichen
HTML DOM Span 对象
Span 对象
Span 对象代表 HTML <span>
元素。
访问 Span 对象
您可使用 getElementById()
来访问 <span>
元素:
示例代码:
var x = document.getElementById("mySpan");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>如何访问 SPAN 元素的演示</h3>
<p>My mother has <span id="mySpan" style="color:blue;">blue</span> eyes.</p>
<p>单击按钮以获取 span 元素的颜色。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("mySpan").style.color;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Span 对象
您可使用 document.createElement()
方法来创建 <span>
元素:
示例代码:
var x = document.createElement("SPAN");
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>单击该按钮以创建 SPAN 元素。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
var x = document.createElement("SPAN");
var t = document.createTextNode("This is a span element.");
x.appendChild(t);
document.body.appendChild(x);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html