Javascript将iframe的内容设置为contenteditable =" true"

时间:2016-11-01 16:58:10

标签: javascript jquery

我使用以下方法将本地html页面添加到我的主页:

$('#content_wrapper').append('<iframe src="assets/theme1/index.html" name="frame1" id="frame1"></iframe>');

我现在需要做的是设置 contenteditable =&#34; true&#34; ,以便我可以对其进行编辑。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

document.getElementById('myframe').contentWindow.document.body.setAttribute("contenteditable","true")