Password select() 方法
Password 对象的 select() 方法用于选取密码域中的文本
语法
passwordObject.select()
浏览器支持
所有主要浏览器都支持 select() 方法
范例
选取密码域中的文本
<script> function myFunction(){ document.getElementById("pwd").select(); } </script> <form> 密码: <input type="password" id="pwd" value="thgrt456"> </form> <button type="button" onclick="myFunction()">选中内容</button>