Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我编写的用于在单击图像时导航到另一个 jsp 页面的代码。但是,我没有得到输出。请帮帮我。
<td align="center" > <img src="image.jsp?imgid=<%=rs.getInt(1)%>" width="100" height="100" **onclick="ModelList.jsp"** >
Onclick 是一个事件,它需要一个事件处理程序(例如一个 javascript 函数)来处理偶数。所以你可以做这样的事情
onclick="window.href.location = ModelList.jsp"
以下更改将起作用..
<a href="ModelList.jsp"> <img src="image.jsp?imgid=<%=rs.getInt(1)%>" width="100" height="100" ></a>