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的文本区域中,我试图以粗体显示一些文本,但它没有呈现标签并按原样显示:
例如
<% out.println("<b>"+Pattern+"</b>");%>
其中字符串模式 =ERROR
这显示为
<b>ERROR</b> .....in the veiw source it shows like <b>ERROR</b>
它不应该以这种方式工作吗?还有什么其他方法可以使它变得大胆。
试试看<b><% out.println("+Pattern+");%></b>。
<b><% out.println("+Pattern+");%></b>
将其更改为:
<%= Pattern %>
就像直接将其打印到 html 页面中一样