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


HTML Textarea autofocus用法及代碼示例


DOM Textarea autofocus屬性用於設置或返回在頁麵加載時元素是否應獲得焦點。此屬性用於反映HTML自動對焦屬性。

用法:

  • 它用於返回自動對焦屬性。
    textareaObject.autofocus
  • 用於設置自動對焦屬性。
    textareaObject.autofocus = true|false

屬性值:

  • true:它定義了textarea獲取焦點。
  • false:它具有默認值。它定義了textarea沒有獲得焦點。

返回值:它返回一個布爾值,表示文本區域是否自動聚焦。


例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML DOM Textarea autofocus Property 
    </title> 
</head> 
  
<body style="text-align:center"> 
    <h1 style="color:green;"> 
      GeeksforGeeks 
    </h1> 
    <h2>DOM Textarea autofocus Property</h2> 
    
    <!-- Assigning id to textarea. -->
    <textarea id="myGeeks" autofocus> 
        GeeksForGeeks. A computer science portal for Geeks. 
    </textarea> 
    <br> 
    <br> 
    
    
    <button onclick="Geeks()">Submit</button> 
    <p id="sudo"></p> 
    
    <script> 
        function Geeks() { 
            
            //  Return Boolean value to represent textarea. 
            var x =  
            document.getElementById("myGeeks").autofocus; 
            document.getElementById("sudo").innerHTML = x; 
        } 
    </script> 
</body> 
  
</html>

輸出:

在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM Textarea autofocus屬性支持的瀏覽器:

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


相關用法


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