HTML onfocus 事件屬性
定義和用法
onfocus 屬性在元素獲得焦點(diǎn)時(shí)觸發(fā)。
onfocus 常用于 <input>、<select> 以及 <a>.
提示:onfocus 屬性與 onblur 屬性相反。
注釋:onfocus 屬性不適用于以下元素:<base>、<bdo>、<br>、<head>、<html>、<iframe>、<meta>、<param>、<script>、<style> 或 <title>。
實(shí)例
當(dāng)輸入字段獲得焦點(diǎn)時(shí)觸發(fā)函數(shù)。此函數(shù)改變輸入字段的背景色
<script>
function setStyle(x)
{
document.getElementById(x).style.background="yellow";
}
</script>
</head>
<body>
<p>當(dāng)輸入字段獲得焦點(diǎn)時(shí)觸發(fā)函數(shù)。此函數(shù)改變輸入字段的背景色。</p>
First name: <input type="text" id="fname" onfocus="setStyle(this.id)"><br>
Last name: <input type="text" id="lname" onfocus="setStyle(this.id)">
</body>
HTML onblur 事件屬性
定義和用法
onblur 屬性在元素失去焦點(diǎn)時(shí)觸發(fā)。
onblur 常用于表單驗(yàn)證代碼(例如用戶離開(kāi)表單字段)。
實(shí)例
當(dāng)用戶離開(kāi)輸入字段時(shí)對(duì)其進(jìn)行驗(yàn)證:
<script>
function upperCase()
{
var x=document.getElementById("fname").value
document.getElementById("fname").value=x.toUpperCase()
}
</script>
</head>
<body>
<p>請(qǐng)輸入您的姓名,然后把焦點(diǎn)移動(dòng)到字段外:</p>
請(qǐng)輸入您的姓名(英文字符):<input type="text" name="fname" id="fname" onblur="upperCase()">
</body>
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。