gpt4 book ai didi

css - 在 cfoutput 标签内显示 octothorpe

转载 作者:行者123 更新时间:2023-12-01 15:30:45 24 4
gpt4 key购买 nike

<cfoutput query="getGames">
<li>
<a href="#link_url#" style="background: #E97B2A; display: block; height: 320px; width: 500px;">#name#</a>
</li>
</cfoutput>

背景颜色 # 破坏了它,如何在不关闭 cfoutput 标签(或使用 css rgb() )的情况下显示 #?

最佳答案

# 符号可以在 cfoutput 标记内和其他区域(例如字符串)中通过像 ## 一样加倍来转义。

所以你需要使用下面的代码:

<cfoutput query="getGames">
<li>
<a href="#link_url#" style="background: ##E97B2A; display: block; height: 320px; width: 500px;">#name#</a>
</li>
</cfoutput>

关于css - 在 cfoutput 标签内显示 octothorpe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2312225/

24 4 0