何が間違っているのかよくわかりません。要素にフォーカスがあるかどうかを確認する方法を調べました。document.hasFocus() メソッドを見つけました。そこで、Chrome でデバッグしてみたところ、「Uncaught TypeError: Object # has no method '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);