📜  HTML DOM Keygen autofocus 属性

📅  最后修改于: 2022-05-13 01:56:50.009000             🧑  作者: Mango

HTML DOM Keygen autofocus 属性

HTML DOM 中的keygen autofocus 属性用于设置或返回 元素的autofocus属性的值。 autofocus属性用于定义 keygen 元素是否在页面加载或刷新时自动获得焦点。

句法:

返回自动对焦属性。

keygenObject.autofocus

设置自动对焦属性。

keygenObject.autofocus = true|false

属性值:

  • true|false:用于指定在页面加载或刷新时是否应该获取 keygen 元素的焦点。默认为假。

返回值:它返回一个布尔值,表示 keygen 元素是否必须被聚焦。

示例 1:以下示例说明了如何返回自动对焦属性。

HTML


   

    

   

    

GeeksforGeeks

    

HTML DOM Keygen autofocus Property

    
    
        Username:         

Encryption:                       
         

          To find out whether the keygen element         automatically gets focus on page load           or ot, click the "Check" button.       

               

                


HTML


 

    

 

    

GeeksforGeeks

    

HTML DOM Keygen autofocus Property

    
      
        Username:         

Encryption:                       
             

        To set the autofocus property,         click on "set" Button.     

                        

                


输出:

示例 2: 下面的示例演示了如何设置自动对焦属性。

HTML



 

    

 

    

GeeksforGeeks

    

HTML DOM Keygen autofocus Property

    
      
        Username:         

Encryption:                       
             

        To set the autofocus property,         click on "set" Button.     

                        

                

输出: