input框聚焦时自动全选中
时间: 2023-12-03 10:19:09 浏览: 195
可以通过 JavaScript 来实现 input 元素聚焦时自动全选中的效果。可以使用 `select()` 方法选中 input 元素中的文本。
以下是一个示例:
```html
<input type="text" id="myInput" value="hello world" />
<script>
const input = document.getElementById("myInput");
input.addEventListener("focus", function () {
// 在 input 元素获得焦点时,选中所有文本
this.select();
});
</script>
```
当 input 元素获得焦点时,它的 `select()` 方法会被调用,选中所有文本。
阅读全文