1

我必须从 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>
4

1 回答 1

10

你只需要加倍你的#'s。

<td width="43%" bgcolor="##649DCA"><strong>Class</strong></td>

就个人而言,我可能会单独使用 CSS 和样式表。

于 2012-08-01T14:13:58.747 回答