简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <meta charset="utf-8"><link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/> <style> span { color: blue; border:1px solid black; } </style> <div>这里是一个在未设置 color 属性的元素内部的 <span>span 元素</span>。 <div style="color:green"> 这里是一个带有 color:green 的元素内部的 <span id="mySpan">span 元素</span>。 </div> <div style="color:red"> 这里是一个带有 color:red 的元素内部的 <span>span 元素</span>。 </div> <p>点击“尝试一下”按钮把第二个 SPAN 元素的 color 属性的值设置为 "inherit":</p> <button onclick="myFunction()">尝试一下</button> <script> function myFunction() { document.getElementById("mySpan").style.color = "inherit"; } </script> <footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
运行结果: