我想使用 jsp 文件中的函数打印出 3 个按钮。这样做的正确方法是什么,因为我的方法似乎是错误的。
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Test Page</title>
<%!
int j = 3;
%>
<%!
public void manyButtons() {
for (int i = 0; i < j; i++) {
%>
<input type="button" value="button<%=i%>"/>
<%!
}
}
%>
</head
>
<body>
<% manyButtons(); %>
</body>
</html>