我正在爲自己的內容管理系統(CMS)開發純JavaScript JavaScript編輯器。我需要做的是將IFRAME中的源代碼與TEXTAREA元素的內容同步,這樣我就可以切換源代碼視圖和來回富文本編輯。我有一些代碼在一起,它同步數據,但我只能更改富文本編輯器(IFRAME)中的內容,而不是源編輯器(TEXTAREA)。這樣做的目的是通過POST表單將數據提交給服務器,因爲我不知道我該怎麼做。我也不想使用jQuery。我不是「JavaScript專家」。反正這裏是我的代碼段:使用textarea元素同步iFrame源代碼
<iframe id="editor" frameborder="0"></iframe>
<textarea id="html" onchange="document.getElementById('editor').contentWindow.document.body.innerHTML=this.value;"></textarea>
<script>
var e = document.getElementById("editor").contentWindow;
e.document.designMode = "on";
e.document.open();
e.document.write("<head><style>body{font-family:arial,helvetica,sans-serif;}</style></head>");
e.document.close();
function def() {
document.getElementById("fontName").selectedIndex = 0;
document.getElementById("fontSize").selectedIndex = 1;
document.getElementById("foreColor").selectedIndex = 0;
}
function edit(x, y) {
e.document.execCommand(x, false, y);
e.focus();
}
setInterval(function() {
document.getElementById("html").value = e.document.body.innerHTML;
}, 200);
</script>