我想用来自 jquery post() 的数据填充 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)。 有人可以帮助我实现这一目标吗?
先感谢您, 米歇尔
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不熟悉该插件,但通过快速阅读文档,我希望它能够工作(假设您已包含所需的 .js/.css 资源:
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: