DesignMode 跟 contentEditable 这个两个属性一般常用在 iframe中,在富文本编辑器之类中反光发热。
var ifr = document.getElementById("editor"); // iframe 的id 位editor
var doc = ifr.contentDocument || ifr.contentWindow.document; // W3C || IE 方式获取iframe的文档对象
doc.designMode= "on";
doc.contentEditable= true;