★★★★★★★框架页问题,高手请帮忙!急!!!
我有一个框架页index.htm
该框架页如下
<html>
<head>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
</head>
<frameset rows="64,*,64">
<frame name="top" scrolling="no" noresize target="contents" src="top.htm">
<frameset cols="242,*">
<frame name="left" target="main" src="new2.jsp">
<frame name="main" src="blank.jsp">
</frameset>
<frame name="bottom" scrolling="no" noresize target="contents" src="foot.htm">
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>
在左边的new2.jsp中,是一个动态生成的下拉列表,其内容为图片的名字,我想实现这样一个功能,当点击new2.jsp中下拉列表的时候,在blank.jsp中显示该图片的名字;
请问如何实现???
在左边的文件中我是这么写的(new2.jsp)
<form method="post" action="" name="form1" >
<select size="29" name="left" multiple height=100% onclick="xianshi(this.options[selectedIndex].value)">
</select>
</form>
该javascript该如实现