多个div绑定同一个onclick方法,怎么知道我点击的是哪个呢?我想要点击那个则删除那个!请教!

如题,多个div都添加的有onclick()方法,点击那个 则删除那个?我的怎么没效果啊?

声明:因为插件的原因无法使用$("x").clcik(function(){}); 方法!

JS:


 //删除图片块

    function delImgbox(e){

        console.log( $(this));

        $(this).parent("dt").parent(".Img_box").remove();

        console.log($(this).parent("dt").parent(".Img_box"));

    }

html:


https://img3.mukewang.com/5c32b5a5000168e313510554.jpg

慕尼黑5688855
浏览 1157回答 1
1回答

幕布斯7119047

$(e).parent("dt").parent(".Img_box").remove();
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript