从 JSP 打印多行 HTML 行
out.println(%><form> +
<p><label for="username">Username:</label><input type="text" name="username" /></p> +
<p><label for="password">Password:</label><input type="password" name="password" /></p> +
<p class="submit"> +
<input type="submit" name="button" value="Login" /> +
<input type="submit" name="button" value="Registrer" /> +
</p> +
</form> <%);
这就是我认为我可以做的,但显然我不能,所以我的问题是,如何打印多行 HTML? 有没有比我现在做的更好的方法?
out.println(%><form> +
<p><label for="username">Username:</label><input type="text" name="username" /></p> +
<p><label for="password">Password:</label><input type="password" name="password" /></p> +
<p class="submit"> +
<input type="submit" name="button" value="Login" /> +
<input type="submit" name="button" value="Registrer" /> +
</p> +
</form> <%);
That is what i thought i could do, but obviously i can't so my question is, how do i print multiple lines of HTML?
Is there a better way to do it than the way i'm doing ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。您必须将它们放在一个大的带引号的字符串中。
但更好的是不使用
out.println()
(以及 JSP 中的所有其他scriptlet)。将纯 HTML 放入 JSP 中,并在必要时使用 JSTL 核心标记来控制流程。例如,
另请参阅:
You can't. You've to put them in one large quoted string.
But much better is to just not use
out.println()
(and all other scriptlets in JSP). Put HTML plain in JSP and use if necessary JSTL core tags to control the flow.E.g.
See also: