如何输出类似使用 cfoutput 标签的东西。
<cfoutput>
<this is my word="word" value="#abcg#">
</cfoutput>
当我使用单引号时,这不会给我任何东西,它会用单引号打印出来
<cfoutput>
<'this is my word="word" value="#abcg#"'>
</cfoutput>
结果是:
<'this is my word="word" value="#abcg#"'>
我怎样才能得到公正
<this is my word="word" value="#abcg#">
谢谢您的帮助