鼠标经过字体变色问题
表格的单元格里面的字体在鼠标经过时变色,变色代码为下面的代码,放到JSP页中已经通过,
<html>
<table border=1> <tr>
<td onmouseover= 'f1.style.color= "red " 'onmouseout= 'f1.style.color= "black " '> <font id=f1> lalala </font> </td> </tr> </table>
</html>
现在我想把它写成动态的,那么向上面的
<td onmouseover= 'f1.style.color= "red " 'onmouseout= 'f1.style.color= "black " '> <font id=f1> 这段代码如何加在下面的语句中呢:
out.print( " <td nowrap bgcolor=white align=center> "+rs.getString(3));
关键是如何组合这个字符串,关于里面单引号与双引号如何处理的问题,我怎么都拼不对.希望个位大侠给予指点.
------解决方案--------------------out.print( " <td nowrap onmouseover= 'this.style.color=\ "red\ " 'onmouseout= 'this.style.color=\ "black\ " ' bgcolor=white align=center> "+rs.getString(3)+ " <\/td> ");
------解决方案--------------------学习
------解决方案--------------------遇到字符串内部的双引号就加 "\ "
------解决方案--------------------转义下