How to change focus out of iframe?

2019-08-10 18:51发布

Got some code which loads an input box, and then below this is an iframe with a textarea... Problem is I want the focus to be on the input box when the page loads, but it always jumps to the textarea because the iframe loads second...

How do I keep focus on the first element in the page?

1条回答
男人必须洒脱
2楼-- · 2019-08-10 19:15

Put this inside the iframe code.

<script language="text/javascript">
window.parent.document.getElementById("idOfInput").focus();
</script>
查看更多
登录 后发表回答