本文介绍了有人可以解释一下这段代码吗的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

var ext= $find("ctl00_modal");
                    var ifr= $get("modal");
                    ifr.src = "../Popup/abc.aspx";
                    ifr.style.width = "750px";
                    ifr.style.height = "310px";
                    ifr.style.left = "2px";
                    ifr.style.top = "2px";
                    ext.initialize();
                    ext.show();

推荐答案




这篇关于有人可以解释一下这段代码吗的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-19 22:45