我在服务器操作时调用JSP并显示我需要的所有内容。 现在,我有一个特殊的场景,我将通过使用来自其他JSP的href单击链接来调用页面。 当我通过单击链接导航到我的JSP时,我想要一个按钮启用。
答案 0 :(得分:0)
通过<a href="some.jsp?enable=false">link</a>
传递附加参数。在jsp中检查参数并将按钮状态设置为禁用。
<button <%=("false".equals(request.getPrameter("enable"))?"disabled":""%> > OK </button>