使用jquery实现监听事件

$(document).ready(function () {
    $('body').on("click", ".thumbnail", function (e) {
        // console.log(e);
        console.log(e.currentTarget.currentSrc);
        console.log(e.target.dataset.index);
        $('#videoId').attr('src', e.target.dataset.src);
        $(this).addClass('b_FF2E4C').parents('li').siblings().children().children('.thumbnail').removeClass('b_FF2E4C');
    }).on('click', '#returnId', function (e) {
        console.log(e.target);
        // window.history.go(-1);
        // location.replace(this.href);event.returnValue=false;
        // document.parentWindow.location.reload();
        window.location = document.referrer;
        console.log(document.referrer);
    }).on('click', '#closeId', function (e) {
        console.log(e.target);
    }).on('click', '#deleteId', function (e) {
        console.log(e.target);
    }).on('click', '.fastBackward', function (e) {//后退
        speedBackward(0);
    }).on('click', '.pause', function (e) { //暂停
        playPause();
    }).on('click', '.speed', function (e) { //快进
        speedBackward(1);
    });
});

猜你喜欢

转载自blog.csdn.net/web_cgh/article/details/80849088
今日推荐