(function ($) {
$(document.body).on(‘mousemove scroll‘, function () {
var fun = function (event) {
$(‘audio,video‘).each(function (index, item) {
if (item !== event.target) {
item.pause();
}
});
}
$(‘audio,video‘).off(‘playing‘, fun);
$(‘audio,video‘).on(‘playing‘, fun);
});
}($));
原文:https://www.cnblogs.com/hearthot/p/14029878.html