我有这个功能正常的代码:
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)的数据。 有人可以帮助我实现这个目标吗?
提前谢谢你, 米歇尔
答案 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");
}
});
});