Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在播放 MediaElement 视频时触发全屏。
$('video').on("play", function () { //fullscreen mode });
有任何想法吗?谢谢!
确保您有 jquery 1.7 或更高版本才能使用 on 功能。那么这应该工作:
player = new MediaElementPlayer('video'); $('video').on("play", function() { player.enterFullScreen(); });