一部の Web サイトではfocus
、ウィンドウの読み込み時に要素が設定されています。そのWebサイトをiframeすると、プログラムで親ウィンドウにフォーカスを設定できないようです。IE
これは(9) と(19) にのみ発生しFirefox
、Opera/Safari/Chrome は問題ありません。
<script>
window.onload = function() {
setTimeout(function() {
// this does not focus #foo
document.getElementById("foo").focus();
// or more seconds that enough to see the iframe focus
}, 3000);
};
</script>
<input id="foo" type="text" value="foo" /><br />
<iframe width="800" height="500" src="http://www.bing.com" />
この問題の回避策を知っている人はいますか?