以下是javascript函數
<script >
function replyClick(id)
{
alert("現在點擊了");
alert("要回復的帖子的id是:"+id);
}
</script>
在jsp中循環生成button的代碼
//類Bean2是我的自定義的java類,其中有long id,String userName,String content三個屬性,以下是jsp腳本,用來循環生成button
<%
List<Bean2> list=(List<Bean2>)session.getAttribute("bean2");
for(Bean2 bean2:list)
{ %>
<label><%=bean2.userName%></label><br/>
<label><%=bean2.content%></label><br/>
<input type="button" onclick="replyClick(bean2.id)" title="button" ><br/>
<% }
%>
情況就是,點擊這些button,什麼反應都沒,請問這是怎麼回事呢?應該怎樣解決呢?
<input type="button" onclick="replyClick(bean2.id)" title="button" ><br/>
->
<input type="button" onclick="replyClick(<%=bean2.id%>)" title="button" ><br/>