如果没有被iframe引用的话,则location与top.location是一样的!
判断页面是否被iframe引用
if(top.location != location){
top.location.href= location.href;
}
为iframe添加allowfullscreen属性即可
<iframe src=“video.html” frameborder=“0” width=“100%” height=“100%” scrolling=“no” allowfullscreen=“true” webkitallowfullscreen=“true” mozallowfullscreen=“true”></iframe>