簡體   English   中英

如何訪問JSP中某些其他scriptlet標記中的scriptlet標記中存在的變量?

[英]How to access a variable present in a scriptlet tag in some other scriptlet tag in JSP?

如果我這樣做,它會顯示“找不到符號:x”。 無論如何,我可以在那個scriptlet標簽之外訪問x嗎?

<%
String x="abc";
%>
<%
System.out.println(x);
%>

您可以通過表達式標記(<%=%>)訪問x。 您可以嘗試以下代碼:

<%
String x="abc";
%>
<%=x %>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM