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

时间:2011-09-29 13:17:16

标签: javascript jquery jqmodal

我有这个功能正常的代码:

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)的数据。 有人可以帮助我实现这个目标吗?

提前谢谢你, 米歇尔

1 个答案:

答案 0 :(得分:0)

不熟悉该插件,但通过快速阅读文档,我希望这可以工作(假设您已包含所需的.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");
         }
    });  
});