我不太确定自己做错了什么,我查找了一种方法来查看元素是否具有焦点。我找到了 document.hasFocus() 方法。所以我尝试并在 Chrome 上调试并得到“未捕获的类型错误:对象 # 没有方法 'hasFocus'。”。这是我的 JavaScript:
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;font-size:12px;}</style></head>");
e.document.close();
function def() {
document.getElementById("fonts").selectedIndex = 0;
document.getElementById("size").selectedIndex = 1;
document.getElementById("color").selectedIndex = 0;
}
function edit(x, y) {
e.document.execCommand(x, false, y);
e.focus();
}
setInterval(function() {
if (document.getElementById("editor").contentWindow.hasFocus()) {
document.getElementById("html").value = document.getElementById("editor").contentWindow.document.body.innerHTML;
}
else if (document.getElementById("html").hasFocus()) {
document.getElementById("editor").contentWindow.document.body.innerHTML = document.getElementById("html").value;
}
}, 100);