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


HTML del cite用法及代码示例


HTML DOM中的DOM del cite属性用于设置或返回<del>元素的cite属性的值。 cite属性用于指定文档或消息的URL,该URL表示删除文本的原因。它对任何普通的Web浏览器都没有视觉效果。它只能由屏幕阅读器使用。

用法:

  • 它返回cite属性。
    delObject.cite
  • 它用于设置cite属性。
    delObject.cite = URL

属性值:


  • URL:它指定了文档的URL,该URL定义了为何删除该文本的其他先前文本。
    可能的值为:
    1. Absolute URL:它用于指出其他网站(例如cite =“ http://www.w3schools.com”)
    2. Relative URL:它用于指出网站内的页面。 (例如cite =” geeks.htm”)

    返回值:它返回一个表示源文档URL的字符串值。

    示例1:本示例返回cite属性。

    <!DOCTYPE html> 
    <html> 
      
    <head> 
        <title> 
          HTML DOM Del cite Property 
      </title> 
        <style> 
            del { 
                color:red; 
            } 
              
            ins { 
                color:green; 
            } 
        </style> 
    </head> 
      
    <body style="text-align:center;"> 
        <h1> 
          GeeksforGeeks 
      </h1> 
      
        <h2> 
          DOM Del cite Property 
      </h2> 
      
        <p> 
            GeeksforGeeks is a  
          <del id="GFG" 
               cite="www.GeeksForGeeks.com">  
                mathematical</del>  
          <ins> 
            computer</ins> science portal 
        </p> 
      
        <button onclick="myGeeks()"> 
            Submit 
        </button> 
      
        <p id="sudo"
           style="Font-size:25px; 
                  color:green;"> 
      </p> 
      
        <script> 
            function myGeeks() { 
                var g = 
                    document.getElementById("GFG").cite; 
                
                document.getElementById( 
                  "sudo").innerHTML = g; 
            } 
        </script> 
      
    </body> 
      
    </html>

    输出:
    在单击按钮之前:

    单击按钮后:

    示例2:本示例设置cite属性。

    <!DOCTYPE html> 
    <html> 
      
    <head> 
        <title> 
          HTML DOM Del cite Property 
      </title> 
        <style> 
            del { 
                color:red; 
            } 
              
            ins { 
                color:green; 
            } 
        </style> 
    </head> 
      
    <body style="text-align:center;"> 
        <h1>GeeksforGeeks</h1> 
      
        <h2> 
          DOM Del cite Property 
      </h2> 
      
        <p> 
            GeeksforGeeks is a 
          <del id="GFG"
               cite="www.GeeksForGeeks.com">  
                mathematical 
          </del>  
          <ins>computer</ins> science portal 
        </p> 
      
        <button onclick="myGeeks()"> 
            Submit 
        </button> 
      
        <p id="sudo" 
           style="Font-size:25px; 
                  color:green;"> 
      </p> 
      
        <script> 
            function myGeeks() { 
                var g =  
                    document.getElementById( 
                      "GFG").cite =  
                    "www.finecomb.com"; 
                
                document.getElementById( 
                  "sudo").innerHTML =  
                  "The cite attribute was changd to " + g; 
            } 
        </script> 
      
    </body> 
      
    </html>

    输出:

    在单击按钮之前:

    单击按钮后:

    支持的浏览器:DOM Del cite属性支持的浏览器如下:

    • 谷歌浏览器
    • Internet Explorer 10.0以上
    • Firefox
    • Opera
    • Safari


相关用法


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