码迷,mamicode.com
首页 > 其他好文 > 详细

easyui dialog iframe模式,dialog 父级页面调用子页面(iframe)的方法

时间:2019-06-26 09:37:41      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:easyui   text   scroll   div   需要   var   log   cti   tle   

var content = ‘<iframe id="iframe1" name="iframeuuid" src="‘ + url + ‘" width="100%" height="98%" frameborder="0" scrolling="no"></iframe>‘;
var div = document.createElement(‘div‘);
div.id = "sbkSelectDialog";
document.body.appendChild(div);
$(‘#selectDialog‘).dialog({
title: ‘选择‘,
width: 1000,
height: 600,
closed: false,
cache: false,
//href: url,
content:content,
modal: true,
buttons:[{
text:‘保存‘,
iconCls:‘icon-save‘,
handler:function(){
//获取iframe里面的内容
var childWin = document.getElementById(‘iframe1‘).contentWindow;
//调用子页面对象,子页面的方法
var rows = childWin.selectedDevListGrid.getSelectDevList();
if(rows){
if(rows.length==0){
$.messager.alert(‘提示‘,‘请选择需要选择的设备!‘);
}else{
console.log(rows);
}
}

}
},{
text:‘关闭‘,
iconCls:‘icon-close‘,
handler:function(){
$("#selectDialog").dialog(‘destroy‘);
}
}],
onClose : function() {
$(this).dialog(‘destroy‘);
},
onLoad:function(){

}
});

easyui dialog iframe模式,dialog 父级页面调用子页面(iframe)的方法

标签:easyui   text   scroll   div   需要   var   log   cti   tle   

原文地址:https://www.cnblogs.com/hellonotebook/p/11087559.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!