在 Coldfusion 中,如何找到链接文件的文件大小并将其用作 alt 属性
我有一个很大的列表,其中包含链接到 pdf 和 msword 文件的图标。我想获取链接文件的文件大小(以 kb 为单位),然后将其用作图像上的 alt 属性。生成的代码看起来像这样。
Description of file <a href="file1.pdf"><img src="pdficon.gif" alt="27.6 kb" /></a>
<a href="file1.doc"><img src="wordicon.gif" alt="33.2 kb" /></a>
所有文件的链接都是静态 href,因为并非目录中的所有文件都在此列表中使用。我将如何进行冷融合?我是否必须使用 cfdirectory 获取所有文件,然后将它们与 href 匹配?或者有没有办法只解析父级 href 并获取文件大小?
谢谢!
I have a large list with icons linking to pdf and msword files. I'd like to get the filesize in kb of the linked file then use that as the alt attribute on the image. The generated code would look something like this.
Description of file <a href="file1.pdf"><img src="pdficon.gif" alt="27.6 kb" /></a>
<a href="file1.doc"><img src="wordicon.gif" alt="33.2 kb" /></a>
All the links to the files are static href's as not all the files in the directory are used in this list. How would I go about doing in coldfusion? Would I have to get all the files using cfdirectory and then match them up with the href's? Or is there a way to just parse the parent href and grab the filesize?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是时候使用Java了
Time to use Java