我想用来自 jquery post() 的数据填充 jqmodal

发布于 2024-12-07 08:42:20 字数 543 浏览 2 评论 0原文

我有这个功能的代码:

jQuery("#Zone__" + row + "__documents").find("td:eq(3)").mouseover(function(){
var text = jQuery("#Zone__" + row + "__documents").find("td:eq(3)").html();
if(text.indexOf("...") > 0){
    jQuery.post("/_common/cfc/act_get.cfc?method=getNcas&returnFormat=json",
        {document_id:doc_id,maxnum:100},
        function(res,code){
            alert(res);
        },
        "json"
    );
     }
});

现在,我想打开 jquery 插件“jqmodal”,而不是警报,其中的数据来自其中的帖子(res)。 有人可以帮助我实现这一目标吗?

先感谢您, 米歇尔

I have this code which is functional:

jQuery("#Zone__" + row + "__documents").find("td:eq(3)").mouseover(function(){
var text = jQuery("#Zone__" + row + "__documents").find("td:eq(3)").html();
if(text.indexOf("...") > 0){
    jQuery.post("/_common/cfc/act_get.cfc?method=getNcas&returnFormat=json",
        {document_id:doc_id,maxnum:100},
        function(res,code){
            alert(res);
        },
        "json"
    );
     }
});

Now, instead of an alert, I would like to open the jquery plugin 'jqmodal' with the data coming from the post inside it (res).
Could someone help me to achieve this ?

Thank you in advance,
Michel

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

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

发布评论

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

评论(1

岁月蹉跎了容颜 2024-12-14 08:42:21

不熟悉该插件,但通过快速阅读文档,我希望它能够工作(假设您已包含所需的 .js/.css 资源:

<div class="jqmWindow" id="dialog"></div>

$(document).ready(function() {
    $('#dialog').jqm();

    jQuery("#Zone__" + row + "__documents").find("td:eq(3)").mouseover(function(){
    var text = jQuery("#Zone__" + row + "__documents").find("td:eq(3)").html();
    if(text.indexOf("...") > 0){
        jQuery.post("/_common/cfc/act_get.cfc?method=getNcas&returnFormat=json",
            {document_id:doc_id,maxnum:100},
            function(res,code){
                $('#dialog').html(res);
                $('#dialog').jqmShow();
            },
            "json");
         }
    });  
});

Not familiar with that plugin but by a quick read of the documentation I would expect this to work (assuming you have included the required .js/.css resources:

<div class="jqmWindow" id="dialog"></div>

$(document).ready(function() {
    $('#dialog').jqm();

    jQuery("#Zone__" + row + "__documents").find("td:eq(3)").mouseover(function(){
    var text = jQuery("#Zone__" + row + "__documents").find("td:eq(3)").html();
    if(text.indexOf("...") > 0){
        jQuery.post("/_common/cfc/act_get.cfc?method=getNcas&returnFormat=json",
            {document_id:doc_id,maxnum:100},
            function(res,code){
                $('#dialog').html(res);
                $('#dialog').jqmShow();
            },
            "json");
         }
    });  
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文