请大家帮我改改下面的代码,让程序更改列表框选项时执行 change 函数. <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>无标题文档</title> </head>
<body> <select name="select"> <option selected>第一列</option> <option>第二列</option> <option>第三列</option> </select> <% function change response.write "你改变了选项." end function %> </body> </html>