Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在服务器操作时调用 JSP 并显示我需要的所有内容。现在,我有一个特殊的场景,我将通过单击使用来自其他 JSP 的 href 的链接来调用页面。当我通过单击链接导航到我的 JSP 时,我希望启用一个按钮。
传递附加参数<a href="some.jsp?enable=false">link</a>。在 jsp 中检查参数并将按钮状态设置为禁用。
<a href="some.jsp?enable=false">link</a>
<button <%=("false".equals(request.getPrameter("enable"))?"disabled":""%> > OK </button>