我有一個網頁,並有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>
會話屬性現在的答案常是image_three當我使用會話.getAttribute在voting.jsp頁面 爲什麼