myIFrame = new IFrame({
id: 'iframe_content',
src: '/iframe_src/'
});
console.dir(myIFrame);
var n = new Element('div', {
style: {
'width': '100px',
'height': "100px",
'border': '1px solid red'
}
});
myIFrame.inject(document.body);
console.log("innerhtml", myIFrame.contentDocument.body.innerHTML);
console.dir(myIFrame.contentDocument.body);
n.inject(myIFrame.contentDocument.body);
div 没有注入到 iframe 中,并且无法访问 Ifrane 中的任何元素。我如何在 mootools 1.4.0 或 MooTools 1.2 中做到这一点