1、做留言板時,遇到數據庫中for循環,判斷點擊的是哪個按鈕的情況?
2、點擊進入js方法
復制代碼 代碼如下:
<script>
function method(id){
alert(id);
}
</script>
復制代碼 代碼如下:
<%for(User u:list){%>
<input type="button" id=<%=u.getId() onclink="method('"<%=u.getId()%>"')"%>
<%}%>
3、看清楚onclink裡面的拼裝方法 先 ' ,後 " 。