【实例介绍】
当单击表单对象时即将光标落在文本框或选择框时产生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事件选择其中的一项弹出选择提示的对话框
如图.所示