1
<table>
<%
out.print("<tr style='border-bottom: dotted; border-top:dotted;border-color:black;'>");
out.print("<td>");
out.print("<font color='black'>"+message+"-");
out.print("</td>");
out.print("<td>");
out.print("<font color='blue'>"+name);
out.print("</td>");
out.print("</tr>");
%>
</table>
內容正在顯示....但tr標籤中的樣式屬性不起作用。 我正在創建一個帖子提交模塊.....當用戶發表評論我想顯示上面和下面的虛線.....就像我們在這個網站上的方式一樣樣式屬性out.print()
我不確定這是如何工作的 - 你的scriptlet中有''。這個腳本也有一個不匹配的'}',儘管這可能在其他地方是平衡的......你也沒有關閉你的''標籤。看看 – tgdavies 2011-03-05 11:11:07
在JSP中使用'out.print()'是非常糟糕的做法。只需在JSP中編寫HTML純文本並使用EL'$ {}'內聯動態變量即可。 – BalusC 2011-03-05 13:55:57
請同時停止重複發佈相同的問題。這是第三個:http://stackoverflow.com/questions/5203525/unable-to-use-style-in-out-print-closed和http://stackoverflow.com/questions/5203274/unable-to-put風格屬性-IN-OUT打印。如果你想改善這個問題,只需使用'edit'鏈接。如果您找不到問題,請在頂部欄中點擊您的用戶名,這會導致您的用戶個人資料出現在http://stackoverflow.com/users/606824/prerna。 – BalusC 2011-03-05 14:55:21