再会,
以下是我在campaignListing.jsp 中的部分jsp 代码:
<td><bean:write name="row" property="campaignPeriod" /></td>
以下是我在类文件中的部分代码:
String cp = null;
cp= "From " + "<br>" + "To ";
cmForm.setCampaignPeriod(cp); //set the campaignPeriod to display cp string
我的 jsp 文件中有一个 td property="campaignPeriod"
。我想让“发件人”和“收件人”在浏览器的 2 行中显示。
想请教如何制作。我试过 put "<br />"
,"\n"
但它仍然只显示在 1 行中。
我在struts2 java项目中做。