How to get focus back for parent window from an iframe programmatically in Javascript

后端 未结 2 833
小蘑菇
小蘑菇 2021-01-22 12:40

Some websites have focus set on an element on window load. If I iframe that website, It seems not able to set focus on parent window, programmatically. This only ha

2条回答
  •  没有蜡笔的小新
    2021-01-22 13:25

    If I've read this correctly you just need to prevent the focus being shifted from the parent window to an element in the iframe.

    I would use an 'onfocus' trigger on the iframe element to switch the focus back to your page, like so: