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.
可能吗?
我想在 HTML5 视频元素上的海报图像上附加一个事件侦听器,以便在加载和显示海报图像后运行代码。
我正在想办法做到这一点,但我需要帮助。
像这样:
var poster = $( 'video' ).prop( 'poster' ); if ( poster ) { var image = new Image(); image.onload = function () { alert( 'load' ); }; image.src = poster; }