標明:我在360和火狐中全屏requestFullscreen()事件不好使;
解釋:我后來發現我的頁面是在iframe框架中使用的並且沒有設置allowfullscreen="true"屬性;
解決方案:設置allowfullscreen="true"屬性,就解決了。
<iframe src="video.html" frameborder="0" width="100%" height="100%" scrolling="no" allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true"></iframe>