在首页有八个车型的logo,任意点击其中的一个在另外一个展示页,怎么根据你点击的那个车的logo,来显示其具体的型号的车图片???
首页代码车logo代码: <table border="0" cellpadding="0" cellspacing="0" style="width: 100%;border:rgb(215,215,215);"> <tr> <td style="text-align: center; height:65px;border:rgb(215,215,215);"><a href="../choosepage/second.aspx"><img id = "icon1" style="width:40px; height:40px;" src='<%=arrBrand[0] %>' /></a></td> <td style="text-align: center"><a href="../choosepage/second.aspx"><img id="icon2" style="width:40px; height:40px;" src='<%=arrBrand[1] %>' /></a></td> <td style="text-align: center"><a href="../choosepage/second.aspx"><img id="icon3" style="width:40px; height:40px;"src='<%=arrBrand[2] %>' /></a></td> <td style="text-align: center"><a href="../choosepage/second.aspx"><img id="icon4" style="width:40px; height:40px;"src='<%=arrBrand[3] %>' /></a></td> </tr> <tr> <td style="text-align: center; height:65px;" class="auto-style1"><a href="../choosepage/second.aspx"><img id="icon5" style="width:40px; height:40px;" src='<%=arrBrand[4] %>' /></a></td> <td style="text-align: center" class="auto-style1"><a href="../choosepage/second.aspx"><img id="icon6" style="width:40px; height:40px;" src='<%=arrBrand[5] %>' /></a></td> <td style="text-align: center" class="auto-style1"><a href="../choosepage/second.aspx"><img id="icon7" style="width:40px; height:40px;" src='<%=arrBrand[6] %>' /></a></td> <td id="more" style="text-align: center" class="auto-style1"><img id="icon8" onclick="more()" style="width:40px; height:40px;" src='<%=url8 %>' /></td> </tr> </table> 展示页的代码:在这个right里面显示车图片 <div id="brand_right" runat="server" style="background-color:#f1f1f1;width:66.7%;position:fixed;margin-top:48px;margin-left:33.3%;"></div>
望天的少年