我有这个功能代码:
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)。有人可以帮我实现这一目标吗?
提前谢谢你,米歇尔