我需要设置ID,因为我想分开代码表单样式。这是代码:
<table class="form">
<tr>
<td class="InitialPadding">
<% if (message.equals("DATABASE ALREADY EXIST")){
out.print("<font color='red'>"+message);
}
else{
out.print("<font color='green'>"+message);
}
%>
</td>
</tr>
</table>
连接颜色的CSS位于css文件中,这是层次结构:
--Web Pages
-css
global.css //THIS IS THE CSS FILE
-images
background.jpg
-index.html
-install.html //THIS IS WHERE THE SCRIPTLET IS
--Source Packages
--etc
如何在out out中设置一个ID,如下所示:
out.print("<id="error">"+message);
而不是:
out.print("<font color='red'>"+message);
感谢。
答案 0 :(得分:1)
这样:
out.print("<p id='error'>" + message);