Finding the id of a parent div using Jquery

前端 未结 9 1071
失恋的感觉
失恋的感觉 2020-11-29 17:00

I have some html like this:

Volume =

9条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-29 17:29

    find() and closest() seems slightly slower than:

    $(this).parent().attr("id");
    

提交回复
热议问题