如何在JSP中out.print()HTML属性?

问题描述 投票:0回答:1

所以问题是我想知道我应该如何使用out.print()属性,我见过有人这样做:

<%
 out.println("<h1> Hello world </h1>");
%>

但是我将如何去做:

<%
 out.println("<h1 align="center"> Hello world </h1>");
%>
html jsp attributes tags
1个回答
0
投票
您应该始终在字符串中使用双引号作为外部引号,而在内部字符串中使用单引号

ex

out.println("<h1 align='center'> Hello world </h1>");

© www.soinside.com 2019 - 2024. All rights reserved.