要实现下面的功能,但是不能使用out.println("call show" );
<%!
void show()
{
out.println("call show" );
}
%>
我要递归调用
不明白你的意思,但有一个可以提醒你,递归的要点是要找到出口。
哦~
这样啊,那写个简单例子吧:
<%!
void show()
{
out.println("<script>alert(just a exam!);history.back();</Script>");
}
%>