cuixueying 方法1
var p = new laya.html.dom.HTMLIframeElement();
Laya.stage.addChild(p);
p.href = "www.layabox.com";
p.y = 200;
方法 2 var iframe = Browser.window.document.createElement('iframe');
iframe.setAttribute('src','www.layabox.com');
var body =Browser.window.document.getElementsByTagName("body")[0];
body.appendChild(iframe);
都没有反应 ?也没有崩溃?