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.
我的 jspx 文件中有以下内容:
<jsp:scriplet> int myvar = 2; </jsp:scriptlet>
如何使用 JSTL 或 scriptlet 将变量 myvar 放入文本框 (id=myinput) 值(我可以使用会话变量来执行此操作)
<input type="text" id="myinput" value="...the value of myvar..."/>
谢谢
<input type="text" id="myinput" value="<%=myvar%>"/>
只是之前的回答有一点错别字。请像这样使用