當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > 編程其他 > Javascript onFocus事件

Javascript onFocus事件

2012/11/28 16:41:54作者:佚名來源:網(wǎng)絡(luò)

移動(dòng)端

【實(shí)例介紹】

當(dāng)單擊表單對(duì)象時(shí),即將光標(biāo)落在文本框或選擇框時(shí)產(chǎn)生onFocus事件。

【實(shí)例代碼】

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無標(biāo)題文檔</title> </head> <body>個(gè)人愛好: <form name="form1" method="post" action=""> <p>   <label>   <input type="radio" name="RadioGroup1" value="唱歌"onfocus=alert("選擇唱歌!")> 唱歌</label> <br> <label> <input type="radio" name="RadioGroup1" value="跳舞"onfocus=alert("選擇跳舞!")> 跳舞</label> <br> <label> <input type="radio" name="RadioGroup1" value="畫畫"onfocus=alert("選擇畫畫!")> 畫畫</label> <br> </p> </form> </body> </html> 【代碼分析】

在代碼中,加粗部分代碼應(yīng)用了onfocus事件,選擇其中的一項(xiàng),彈出選擇提示的對(duì)話框,
如圖20.17所示。

onFocus

 【素材及源碼下載】

請(qǐng)點(diǎn)擊:onFocus事件 下載本實(shí)例相關(guān)素材及源碼

 

標(biāo)簽: Javascript  onFocus  事件