所以,我得到了我需要的结果,但我需要创建一个 iframe 或显示结果。我需要改变什么才能做到这一点?我假设它与 scopedetails div 有关,但我不是 100% 的。
function getscope(id){
var id = id
var txt = 'Click generate to generate the scope of work now';
$.prompt(txt,{
buttons:{Confirm:true, Cancel:false},
submit: function(v,m,f){
var flag = true;
if (v) { }
return flag;
},
callback: function(v,m,f){
if(v){
$.post('getscope',{sid:id},
function(data){
$("div#scopedetails").html(data);
}
);
}
}
});
}