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文件
上一篇: Python练习题3.20逆序的三位数
下一篇: ES6---axios执行原理