jq模态问题

发布于 2024-09-07 16:13:10 字数 927 浏览 4 评论 0原文

我正在尝试使用 jqModal 插件实现模式窗口。我进行 ajax 调用以使用表格数据填充 div。在那里,有一个可点击的进度条。

在我的脚本中,我不

    $(document).ready(function() {

$('#jqmRTypes').jqm({modal:true});


       showTypes = function(id,projNum) {
       formData = 'vw=getTypes&ID='+id+'&project_number='+projNum;
       alert(formData);
       $.ajax({
          type: "get",        
          url: "<cfoutput>#actURL#</cfoutput>",
          data: formData,        
          cache: false,       
           success: function(result) { 
               $("#jqmRTypesText").html(result);
               $('#jqmRTypes').jqmShow();
            },
           error: function(xmlHttpRequest, status, err) {
            confirm('Error!' + err );
           }
        }); 
   }

知道为什么,但在 firebug 中不断收到错误(没有描述并指向 $('#jqmRTypes').jqmShow();) 我可以使用 show() 而不是 jqmShow(),我将看到该窗口,但它不再是模块化的。

这让我抓狂。任何帮助将不胜感激。

谢谢

I am trying to implement a modal window using jqModal plug-in. I make an ajax call to populate a div with tabular data. In there, there is a clickable progress bar.

In my script, I have

    $(document).ready(function() {

$('#jqmRTypes').jqm({modal:true});


       showTypes = function(id,projNum) {
       formData = 'vw=getTypes&ID='+id+'&project_number='+projNum;
       alert(formData);
       $.ajax({
          type: "get",        
          url: "<cfoutput>#actURL#</cfoutput>",
          data: formData,        
          cache: false,       
           success: function(result) { 
               $("#jqmRTypesText").html(result);
               $('#jqmRTypes').jqmShow();
            },
           error: function(xmlHttpRequest, status, err) {
            confirm('Error!' + err );
           }
        }); 
   }

I don't know why but I keep getting an error in firebug (no description and points to $('#jqmRTypes').jqmShow();)
I can put show() instead of jqmShow() and i will see the window, but it's no longer modular.

It's driving me nuts. Any help will be appreciated.

thanks

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

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

发布评论

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

评论(1

过期以后 2024-09-14 16:13:10

咕噜。我编写了一个自定义标签来显示进度条。根据完成的工作,它会显示一个带有百分比的条形。在这个标签中,我有:

 <script type="text/javascript" src="scripts/jquery-1.4.js"></script>

一旦我删除了这一行,它就工作得很好。

grrr. I wrote a custom tag to display a progress bar. Depending on the work completed, it displays a bar with a percentage. Within this tag, I had:

 <script type="text/javascript" src="scripts/jquery-1.4.js"></script>

Once I removed this line, it worked perfectly fine.

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