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


HTML ins dateTime用法及代碼示例


DOM ins DateTime屬性用於設置或返回<ins>元素的DateTime屬性的值。此屬性用於指定插入文本的日期和時間。日期時間以YYYY-MM-DDThh:mm:ssTZD格式插入。

用法:

  • 它用於返回DateTime屬性。
    insObject.dateTime
  • 它用於設置dateTime屬性。
    insObject.dateTime = YYYY -MM-DDThh:mm:ssTZD
  • 屬性值:


    • YYYY-MM-DDThh:mm:ssTZD YYYY-MM-DDThh:mm:ssTZD它指定插入文本或更改其他文本的日期和時間。

    說明:

    • YYYY-年(例如2009年)
    • MM-月(例如,一月的01)
    • DD-每月的某天(例如08)
    • T-必需的分隔符
    • hh-小時(例如22表示10.00pm)
    • mm-分鍾(例如55分鍾)
    • ss-秒(例如03)
    • TZD-時區指示符(Z表示祖魯語,也稱為格林威治標準時間)

    返回值:它返回一個字符串值,該字符串值表示插入文本和更改文本的日期和時間(代替其他文本)。

    示例1:本示例說明如何返回datetime屬性。

    <!DOCTYPE html> 
    <html> 
      
    <head> 
        <title>DOM ins dataTime 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 dataTime Property</h2> 
      
        <p>GeeksforGeeks is a 
            <del>mathematical</del> 
      
            <!-- Assigning id to  
                 'ins' tag -->
            <ins id="GFG"
                 datetime="2018-11-21T15:55:03Z">  
                computer  
            </ins>scienceportal</p> 
      
        <button onclick="myGeeks()"> 
          Submit 
        </button> 
        
        <p id="sudo"> 
            <script> 
                function myGeeks() { 
      
                    <!-- Return dateTime -->
                    var g =  
                        document.getElementById( 
                      "GFG").dateTime; 
                    document.getElementById( 
                      "sudo").innerHTML = g; 
                } 
            </script> 
    </body> 
      
    </html>

    輸出:
    在單擊按鈕之前:

    單擊按鈕後:

    示例2:本示例說明如何設置dateTime屬性。

    <html> 
      
    <head> 
        <title> 
          DOM ins dataTime 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 dataTime Property</h2> 
      
        <p>GeeksforGeeks is a 
            <del>mathematical</del> 
      
            <!-- Assigning id to 'ins' tag -->
            <ins id="GFG"
                 datetime="2018-11-21T15:55:03Z">  
                computer  
            </ins>scienceportal</p> 
      
        <button onclick="myGeeks()"> 
          Submit 
      </button> 
        <p id="sudo"> 
            <script> 
                function myGeeks() { 
      
                    <!-- Return dateTime -->
                    var g =  
                        document.getElementById( 
                      "GFG").dateTime = "2015-10-19T22:45:07Z"; 
                    document.getElementById("sudo").innerHTML =  
                  "The value of the dateTime attribute was hanged to " 
                    + g; 
                } 
            </script> 
    </body> 
      
    </html>

    輸出:
    在單擊按鈕之前:

    單擊按鈕後:

    支持的瀏覽器:下麵列出了DOM ins datetime屬性支持的瀏覽器:

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


相關用法


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