jsp中输出的两种方法

时间:2025-04-03 16:38:52

1.定义局部变量

<body>

<%

int flag=new Random().nextInt(100);

String str=" ";

if(falg<=30){

str="中奖了";

}

%>

<%=str

%>

</body>

2.限定输出范围的内容

<body>

<%

int flag=new Random().nextInt(100);

if(falg<=30){

str="中奖了";

<%}else{%>

再试试

<%}%>

</body>