【发布时间】:2026-01-19 06:15:02
【问题描述】:
我有一个页面,里面有 3 张图片,所以现在当 单击要像这样设置会话属性的图像
<a href="voting.jsp"><img onclick="myfunction('image_one')" src="image_one.jpg"></a>
<a href="voting.jsp"><img onclick="myfunction('image_two')" src="image_two.jpg"></a>
<a href="voting.jsp"><img onclick="myfunction('image_three')" src="image_three.jpg"></a>
<script>
function myfunction(name)
if(name='image_one')
<% session.setAttribute("user","image_one") %>
else if(name='image_two')
<% session.setAttribute("user","image_two")%>
elseif(name='image_three')
<% session.setAttribute("user","image_three")%>
</script>
当我在voting.jsp 页面中使用 session.getAttribute 时,现在答案总是 image_three 为什么
【问题讨论】: