$(document).ready(function() { const video = $('#mainVideo')[0]; const customBtn = $('#customBtn'); video.controls = false; // 自定义播放按钮点击事件处理 customBtn.click(function() { if (video.paused) { video.play(); customBtn.hide(); video.controls = true; } else { video.pause(); customBtn.show() } }); // 视频播放事件处理 $('#mainVideo').on('play', function() { customBtn.hide(); video.controls = true; }); // 视频暂停事件处理 $('#mainVideo').on('pause', function() { customBtn.show(); }); });