cfinput图像类型和cfwindow问题

发布于 2024-10-14 19:49:10 字数 470 浏览 4 评论 0原文

我正在循环图像目录以列出一堆缩略图。我想在点击事件上显示原始图像。但目前,只是一个窗口。

      <cfform name="myform" format="flash" skin="haloorange">
         <cfinput type="image" src="../thumbs/#currentRow#" name="img#ListGetAt(qryImg.name,1,'.')#"<!--- onclick="javascript:ColdFusion.Window.show('mywindow4')">
       </cfform>

我的问题是 onclick 事件。如果我删除那段代码,表单就会加载。如果我保留它,表格就不会加载。 另外,我尝试了 getURL(javascript:ColdFusion.Window.show('mywindow4')) 但没有运气。

I am looping over an image directory to list bunch of thumbnails. I want to show the original image on a click event. But for now, just a window.

      <cfform name="myform" format="flash" skin="haloorange">
         <cfinput type="image" src="../thumbs/#currentRow#" name="img#ListGetAt(qryImg.name,1,'.')#"<!--- onclick="javascript:ColdFusion.Window.show('mywindow4')">
       </cfform>

My problem is the onclick event. If I remove that piece of code, the form loads. IF I keep it, the form does not load.
Also, I tried getURL(javascript:ColdFusion.Window.show('mywindow4')) but go no luck.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

記柔刀 2024-10-21 19:49:10

我摆脱了 cfwindow 和 ColdFusion.Window.show()

      onclick="getURL('javascript:show(5)')" >  

    <script>
    function show(u) {
      if(u != '') window.open('cfWinSource.cfm', 'sub', 'directories=no, location=no, menubar=no, resizable=yes, scrollbars=no, status=no, titlebar=yes, toolbar=no, height=435, width=535')
    }
   </script>

现在似乎可以工作。

i got rid of cfwindow and ColdFusion.Window.show()

      onclick="getURL('javascript:show(5)')" >  

    <script>
    function show(u) {
      if(u != '') window.open('cfWinSource.cfm', 'sub', 'directories=no, location=no, menubar=no, resizable=yes, scrollbars=no, status=no, titlebar=yes, toolbar=no, height=435, width=535')
    }
   </script>

seems to work for now.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文