當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML ins cite用法及代碼示例


DOM ins cite屬性用於設置或返回對象的cite屬性值元件。 cite屬性用於指定文檔或消息的URL,該URL表示刪除文本的原因。它對任何普通的Web瀏覽器都沒有視覺效果。它隻能由屏幕閱讀器使用。

用法:

  • 它用於返回cite屬性。
    insObject.cite
  • 它用於設置cite屬性。
    insObject.cite = URL
  • 屬性值:


    • URL:它指定了文檔的URL,該URL定義了通過刪除其他先前的文本來插入文本的原因。

    可能的值為:

  1. 絕對網址:它用於指出其他網站(例如cite =“ http://www.geeksforgeeks.org”)
  2. 相對網址:它用於指出網站內的頁麵。 (例如cite =” geeks.htm”)


返回值:它返回一個表示文檔URL的字符串值。

示例1:此示例說明了如何返回cite屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM ins cite Property</title> 
    <style> 
        del { 
            color:red; 
        } 
          
        ins { 
            color:green; 
        } 
          
        h1 { 
            color:green; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>DOM ins cite Property</h2> 
  
    <p>GeeksforGeeks is a 
        <del>mathematical</del> 
  
        <!-- Assigning id to 'ins' tag -->
        <ins id="GFG" 
             cite="www.GeeeksForGeeks.com">  
            computer  
        </ins>scienceportal</p> 
  
    <button onclick="myGeeks()"> 
      Submit 
  </button>   
  <p id="sudo"> 
    <script> 
      function myGeeks() { 
        // Return value of cite attribute. 
         var g = document.getElementById( 
           "GFG").cite; 
          document.getElementById( 
            "sudo").innerHTML = g; 
        } 
        </script> 
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

示例2:本示例說明了如何設置引用屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      DOM ins cite Property 
  </title> 
    <style> 
        del { 
            color:red; 
        } 
          
        ins { 
            color:green; 
        } 
          
        h1 { 
            color:green; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks 
  </h1> 
    <h2>DOM ins cite Property 
  </h2> 
  
    <p>GeeksforGeeks is a 
        <del>mathematical</del> 
  
        <!-- Assigning id to 'ins' tag -->
        <ins id="GFG" 
             cite="www.finecomb.com">  
            computer  
        </ins>scienceportal</p> 
  
    <button onclick="myGeeks()"> 
      Submit 
  </button> 
    <p id="sudo"> 
        <script> 
            function myGeeks() { 
  
                // set value of cite attribute   
                var g = document.getElementById( 
                  "GFG").cite = "www.GeeksForGeeks.com" 
                document.getElementById("sudo").innerHTML =  
                  "The value of the cite attribute was changed  to" + g; 
            } 
        </script> 
</body> 
  
</html>

輸出:

在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:DOM ins cite屬性支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM ins cite Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。