解决TV端使用iframe导致的聚焦问题

1,349 阅读1分钟
最近使用iframe在TV端播放小视频,出现了加载iframe后,焦点会聚焦在iframe中的问题。
页面代码:
<iframe id="videoFrame" name="videoFrame" src=""></iframe>
解决办法:
1.  通过window.focus()解决

    在子页面videoFrame添加如下方法:
    window.onload = function(){
        window.parent.focus();
    }
2.  在iframe中加入tabIndex属性
    tabindex 属性规定元素的 tab 键控制次序,设为负数则不会被Tab选中。
    <iframe id="videoFrame" name="videoFrame" tabIndex="-1" src=""></iframe>