📜  如何使用 JQuery 在输入中选择所有焦点?

📅  最后修改于: 2021-11-24 05:51:24             🧑  作者: Mango

当用户在元素内或焦点元素上进行文本选择时, select() 事件会使用 jQuery 应用于元素。此事件仅限于某些领域。
句法:

$("selected element").select();
//Select all Input field on focus
$("input").select();
//Select Input field on focus whose type="text"
$("input[type='text']").select();
//Select input field using its id="input-field"
$("#input-field").select();

例子:
在下面的示例中,使用焦点、焦点和单击事件选择表单的输入元素上的所有内容。



  

    
    

  

    
        First name:                  
Last name:                  
E-mail:                  
Password:                  
User Age:                  
Your web Profile:                  
             
       

输出: