当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Superscript用法及代码示例


HTML DOM中的上标对象用于表示HTML <sup>元素。可以使用getElementById()访问上标元素。

用法:

document.getElementById("id") 

id分配给<sup>标记的位置。

例:

<!DOCTYPE html>  
<html>  
    <head> 
        <title> 
            HTML DOM superscript Object 
        </title> 
    </head> 
      
    <body style = "text-align:center">  
      
        <h1 style = "color:green;" >  
            GeeksForGeeks  
        </h1> 
          
        <h2>DOM superscript Object</h2>  
  
        <p>A<sup id="sup_scr">computer science</sup>  
        portal for geeks.</p> 
          
        <button onclick="Geeks()">Click Here</button> 
          
        <!-- script to set style in superscript object -->
        <script> 
            function Geeks() { 
                var txt = document.getElementById("sup_scr"); 
                txt.style.color = "green"; 
            } 
        </script> 
</body>  
</html>                    

输出:
在单击按钮之前:
sup
单击按钮后:
sup



范例2:可以使用document.createElement方法创建上标对象。

<!DOCTYPE html>  
<html>  
    <head> 
        <title> 
            HTML DOM superscript Object 
        </title> 
    </head> 
      
    <body style = "text-align:center">  
      
        <h1 style = "color:green;" >  
            GeeksForGeeks  
        </h1>  
          
        <h2>DOM superscript Object</h2>  
  
        <button onclick = "Geeks()"> 
            Click Here! 
        </button> 
          
        <br><br> 
          
        <div>A <span id = "p"></span> portal for geeks.</div> 
          
        <script> 
        function Geeks() { 
            var txt = document.createElement("SUP"); 
            var t = document.createTextNode("computer science"); 
            txt.appendChild(t); 
            document.getElementById("p").appendChild(txt); 
        } 
        </script> 
</body>  
</html>                    

输出:
在单击按钮之前:
sup
单击按钮后:
sup




相关用法


注:本文由纯净天空筛选整理自Vishal Chaudhary 2大神的英文原创作品 HTML | DOM Superscript Object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。