Is it possible to reference a cf variable in html? Example:

<cfset  langValue ="uk">

<html lang="#langValue#">

In this way does not work, however if I then print it out with cf tags it obviously works:

<cfoutput> #langValue# </cfoutput>

Any how to reference the langValue variable in the html lang tag?

有帮助吗?

解决方案

You just have to make sure to wrap your HTML in the cfoutput :

<cfoutput>
    <html lang="#langValue#">
</cfoutput>

其他提示

I don't use cfset any longer. The new hotness is:

<cfscript>
langValue = 'uk'
</cfscript>
<cfoutput>
<html lang="#langValue#">
</html>
</cfoutput>
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top