当用户在元素内或焦点元素上进行文本选择时, 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();
例子:
在下面的示例中,使用焦点、焦点和单击事件选择表单的输入元素上的所有内容。
输出: