-
<html>
-
<head>
-
<script type="text/javascript">
-
function setFocus()
-
{
-
document.getElementById('password1').focus()
-
}
-
function loseFocus()
-
{
-
document.getElementById('password1').blur()
-
}
-
</script>
-
</head>
-
<body>
-
-
<form>
-
<input type="password" id="password1" value="thgrt456" />
-
<input type="button" οnclick="setFocus()" value="Set focus" />
-
<input type="button" οnclick="loseFocus()" value="Lose focus" />
-
</form>
-
-
</body>
-
</html>
评论(0)