cfform 中的 gif 图像出现问题
有趣的是 jpg 图像会显示,但 gif 图像不会显示。为什么?
<cfform name="theForm" action="" format="flash" skin="haloorange" height="1450" width="850">
<cfformgroup type="tile" style="horizontalGap:5; verticalGap:10; horizontalAlign:center; verticalAlign:middle;">
<cfoutput query="qryImg">
<cfformgroup type="vdividedbox" >
<cfformitem type="html" height="230" width="134" >
#name#<br/>
<img src="thumbs/#qryImg.name#" height="92"/><br/>
<cfinput name="del#currentRow#" type="checkbox" label="Delete #name#" width="100" align="middle">
</cfformitem>
</cfformgroup>
</cfoutput>
</cfformgroup>
</cfform>
The funny thing is the jpg images show up, but the gif images won't. whyyy???
<cfform name="theForm" action="" format="flash" skin="haloorange" height="1450" width="850">
<cfformgroup type="tile" style="horizontalGap:5; verticalGap:10; horizontalAlign:center; verticalAlign:middle;">
<cfoutput query="qryImg">
<cfformgroup type="vdividedbox" >
<cfformitem type="html" height="230" width="134" >
#name#<br/>
<img src="thumbs/#qryImg.name#" height="92"/><br/>
<cfinput name="del#currentRow#" type="checkbox" label="Delete #name#" width="100" align="middle">
</cfformitem>
</cfformgroup>
</cfoutput>
</cfformgroup>
</cfform>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我犹豫是否建议这样做,但如果需要 Flash 表单,那么使用
怎么样?听起来底层的 Flex 支持可能不稳定 。即使在以后的版本中也是如此。I hesitate to suggest it, but if flash forms are a requirement, what about using
<cfinput type="image">
? It sounds like the underlying flex support might be spotty. Even in later versions.