onfocus屬於JavaScript中HTML DOM Event對象 中的一個事件,onfocus 事件在對象獲得焦點(游標)時發生。
基本介紹
- 中文名:onfocus
- 外文名:onfocus
語法
參數
實例
代碼
<html>
<head>
<script type="text/javascript">
function setStyle(x)
{
document.getElementById(x).style.background="yellow"
}
</script>
</head>
<body>
First name: <input type="text" onfocus="setStyle(this.id)" id="fname">
<br />
Last name: <input type="text" onfocus="setStyle(this.id)" id="lname">
</body>
</html>