欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Jbox弹窗控件无法获取子页面元素值得问题

程序员文章站 2022-06-28 18:39:39
top.$.jBox.open("iframe:${ctx}/report/reportSubjectDatabase/toChildWindow", "请选择重构快照表的业态类型并确认", 400, 200, { buttons: {"确认": "ok", "关闭": true}, submit: ......
top.$.jbox.open("iframe:${ctx}/report/reportsubjectdatabase/tochildwindow", "请选择重构快照表的业态类型并确认", 400, 200,
{
buttons: {"确认": "ok", "关闭": true},
submit: function (v, h, f) {
if (v == 'ok') {
var selectplat = h.find("iframe")[0].contentwindow.$("#selectplat").val();
if (selectplat != '1' && selectplat != '2'){
top.$.jbox.tip("暂时无此业态的快照表可重构!");
return;
}
$.ajax({
type : 'post',
url : "${ctx}/report/reportsubjectdatabase/kingdeeoverload",
data :{planform : selectplat},
success :function (data) {
if (data == "success"){
top.$.jbox.tip("重构金蝶接口数据成功!");
top.$.jbox.close();
}
if (data == "false"){
top.$.jbox.tip("重构金蝶接口数据失败!");
top.$.jbox.close();
}
}
});
}
}
}
);

解决方式:子页面引入js文件