想实现改变选择框后就可以有个提示的js代码如何编写?
程序代码:
<html xmlns="http://www. http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>无标题文档</title> </head> <script language="javascript"> function f1(){ var i=document.getElementById("select").selectedIndex; if(i==0){ document.getElementById("aaa").innerHTML=""; alert("请选择省份"); }else{ document.getElementById("aaa").innerHTML="你选择的城市是"+document.getElementById("select").options[i].value; } } </script> <body> <form name="form"> <select name="select" onchange="f1()"> <option value="0">请选择城市</option> <option value="1">北京</option> <option value="2">上海</option> <option value="3">天津</option> </select> </form> <div id="aaa"> </div> </body> </html>
以上是我写的代码,打算选择一个城市后,就可以在id为aaa的div内输出你选择的城市,高手帮忙看看有什么错误没,为什么无法实现?