📅  最后修改于: 2023-12-03 15:01:13.514000             🧑  作者: Mango
select()
方法可用于选择 text、password 或 textarea 元素中的文字。
element.select()
无。
无。
<!DOCTYPE html>
<html>
<head>
<title>select() 方法示例</title>
</head>
<body>
<label for="password">密码:</label>
<input type="password" id="password" value="mypassword">
<button onclick="selectPassword()">选择密码</button>
<script type="text/javascript">
function selectPassword() {
var passwordInput = document.getElementById('password');
passwordInput.select();
}
</script>
</body>
</html>
点击按钮后,文本框中的密码将被选中。
select()
方法可用于自动选择 text、password 或 textarea 元素中的文字,方便用户复制或编辑。