我不希望选择框中所选选项的文本换行.它不包装在IE或Firefox中.看起来像
但在Chrome浏览器中它看起来像
如何使文本不在Chrome浏览器中包装?
为什么coldfusion 8评价为47.0000*15.40 eq 723.8为假?
<cfset test = false />
<cfset a = 47.0000 />
<cfset b = 15.40 />
<cfset c = 723.8 />
<cfif (a * b) eq c>
<cfset test = true />
</cfif>
<cfdump "#test#">
Run Code Online (Sandbox Code Playgroud)
测试输出为false.
我需要将多个列匹配的查询分组.例如,将日期,类别和描述匹配的所有行分组.我知道在对一列进行分组时如何使用cfoutput分组,例如:
<cfoutput query="myQry" group="date">
#date#
<cfoutput>
#detail#
</cfoutput>
</cfoutput>
Run Code Online (Sandbox Code Playgroud)
但是,我想分组多列匹配,如下所示:
<cfoutput query="myQry" group="date,category,description">
#date# #category# #description#
<cfoutput>
#detail#
</cfoutput>
</cfoutput>
Run Code Online (Sandbox Code Playgroud)
我知道cfoutput分组不像上面那样工作.那么我如何分组多列?