码迷,mamicode.com
首页 > Web开发 > 详细

JSP -- for循环按钮处理事件

时间:2014-10-19 10:12:35      阅读:438      评论:0      收藏:0      [点我收藏+]

标签:io   ar   java   for   sp   on   art   cti   html   

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>


<title>My JSP ‘index.jsp‘ starting page</title>


<script type="text/javascript">
function method(id) {
alert(id);
}
</script>

 

</head>

<body>
<%
for(int i = 0;i<2 ;i++){
%>

<input type="button" id="<%=i%>" onclick="method(‘<%=i%>‘);" value="添加">

<%}%>
</body>
</html>

JSP -- for循环按钮处理事件

标签:io   ar   java   for   sp   on   art   cti   html   

原文地址:http://www.cnblogs.com/SM-t/p/4034305.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!