看起来应该-6ren">
gpt4 book ai didi

java - out.print 出现在 html 标签之外

转载 作者:行者123 更新时间:2023-11-28 01:49:25 24 4
gpt4 key购买 nike

我正在尝试从 java 中的循环打印,然后将其显示在 html 中。由于某种原因,打印 Material 被写在了表格之外。

<table>
<%
...
while(rs.next()) {
description = rs.getString("description");
out.print("<tr bgcolor='#FFFFFF' class='style11'>" + description + "</tr>");
...
%>
</table>

看起来应该可以,但生成的 html 文件如下所示:

description1description2
<table>
<tbody>
<tr class="style11" bgcolor="#ABCDEF"></tr>
<tr class="style11" bgcolor="#ABCDEF"></tr>
</tbody>
</table>

最佳答案

不是 Java,而是 HTML 问题。你不见了<td>...</td> :

<table>
<%
...
while(rs.next()) {
description = rs.getString("description");
out.print("<tr bgcolor='#FFFFFF' class='style11'><td>" + description + "</td></tr>");
...
%>
</table>

关于java - out.print 出现在 html 标签之外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20913395/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com