您的位置:首页 > Web前端 > HTML

iframe中动态添加html内容

2014-08-26 17:08 260 查看
<iframe id="div_Ver" style="width: 200px; position: relative; left: 100px; top: -22px; z-index: 223; display: none; border: 0px;" ></iframe>

function CheckVersion(obj, sec) {

var o = document.getElementById("div_Ver");

ed = document.all ? o.contentWindow.document : o.contentDocument;

ed.open();

ed.write('<html><head></head><body></body></html>');

ed.close();

ed.contentEditable = true;

ed.designMode = 'on';

}

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: