【實例介紹】
當單擊表單對象時即將光標落在文本框或選擇框時產生onFocus事件
【實例代碼】
<!DOCTYPE html PUBLIC "//WC//DTD XHTML Transitional//EN" "://wwwworg//xhtml"> <head> <meta httpequiv="ContentType" content="text/html; charset=utf" /> <title>無標題文檔</title> </head> <body>個人愛好 <form name="form" method="post" action=""> <p> <label> <input type="radio" name="RadioGroup" value="唱歌"onfocus=alert("選擇唱歌!")> 唱歌</label> <br> <label> <input type="radio" name="RadioGroup" value="跳舞"onfocus=alert("選擇跳舞!")> 跳舞</label> <br> <label> <input type="radio" name="RadioGroup" value="畫畫"onfocus=alert("選擇畫畫!")> 畫畫</label> <br> </p> </form> </body> </html> 【代碼分析】
在代碼中加粗部分代碼應用了onfocus事件選擇其中的一項彈出選擇提示的對話框
如圖.所示
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19985.html