0

如何输出类似使用 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#">

谢谢您的帮助

4

1 回答 1

4

您可以使用以下内容来逃避浏览器尝试将其呈现为 HTML 标记

<cfoutput>
    &lt;this is my word="word" value="#abcg#"&gt;
 </cfoutput>
于 2014-06-04T20:27:11.033 回答