我必须从ajax查询中呈现以下html标记。问题是cfml将前缀为#的任何字符串视为标识符。所以我收到了一个错误。
<cfoutput>
<table style="display:none;" width="100%" border="1" cellpadding="2" cellspacing="0">
<tr>
<td width="43%" bgcolor="#649DCA"><strong>Class</strong></td>
<td width="20%" bgcolor="#649DCA"><strong>Site</strong></td>
<td width="47%" bgcolor="#649DCA"><strong>Date/Time</strong></td>
</tr>
</cfoutput>
答案 0 :(得分:10)
你只需要加倍你的#。
<td width="43%" bgcolor="##649DCA"><strong>Class</strong></td>
就个人而言,我可能只是使用CSS并单独设置表格样式。