之前工作中需要用到获取iframe中的整段html代码,所以研究了下
代码 "iframe的id"
var doc;
if (document.all){ // IE
doc = document.frames["ueditor_0"].contentWindow;
}else{ // 标准
doc = document.getElementById("ueditor_0").contentWindow;
}
//用一个变量承接html代码段
var text = doc.document.body.innerHTML;