我使用以下方法将本地html页面添加到我的主页:
$('#content_wrapper').append('<iframe src="assets/theme1/index.html" name="frame1" id="frame1"></iframe>');
我现在需要做的是设置 contenteditable =&#34; true&#34; ,以便我可以对其进行编辑。
我该怎么做?
答案 0 :(得分:0)
document.getElementById('myframe').contentWindow.document.body.setAttribute("contenteditable","true")