HTML DOM Password select() 方法

2018-08-04 20:40 更新

Password select() 方法

Password 對(duì)象參考手冊(cè) Password 對(duì)象

定義和用法

select() 方法用于選取密碼域中的文本

語(yǔ)法

passwordObject.select()


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 select() 方法


實(shí)例

實(shí)例

下面的例子可選取密碼域中的文本:

<html>
<head>
<script>
function myFunction()
{
document.getElementById("pwd").select();
}
</script>
</head>
<body>

<form>
Password: <input type="password" id="pwd" value="thgrt456">
</form>

<button type="button" onclick="myFunction()">Select content</button>

</body>
</html>

嘗試一下 ?


Password 對(duì)象參考手冊(cè) Password 對(duì)象
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)