Password select() 方法

返回上一级

Password 对象的 select() 方法用于选取密码域中的文本

语法

passwordObject.select()

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 select() 方法

范例

选取密码域中的文本

<script>
function myFunction(){
    document.getElementById("pwd").select();
}
</script>
<form>
密码: <input type="password" id="pwd" value="thgrt456">
</form>
<button type="button" onclick="myFunction()">选中内容</button>

运行范例 »

返回上一级

JavaScript 参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.