今天,同事忽然问我,jsp页面能定义函数么。在MVC摇旗呐喊的今天,我还从来没想这过个问题。于是摸索着写了一个:
<%@ page contentType="text/html;charset=gb2312" %>
<body>
<%!
int a(int i){
i=i++;
return i;
}
%>
<%
for(int k=0;k<=10;k++){
out.println(a(k));}
%>
</body>
这是html效果: 0 1 2 3 4 5 6 7 8 9 10
本文地址:http://com.8s8s.com/it/it12608.htm