页面可编辑
如果想要页面可编辑,只需设置属性 contentEditable 为 true 即可。
整个页面可编辑:document.body.contentEditable = false
某个元素可编辑:document.getElementById(ID).contentEditable = true;
标签:body,contentEditable,编辑,document,true,页面
来源: https://www.cnblogs.com/xguoz/p/13453257.html