jquery中怎樣根據父級找元素?
jquery中parent()可以獲取父級元素,所以獲得某元素父級的父級可以使用
$(selector).parent().parent();
示例如下
創建Html代碼及https://www.52fb.cn/css/
class1
class2
class3
div{padding:10px 20px;border:4px solid #ebcbbe;}
div.class1{width:200px;height:120px;}
編寫jquery代碼
$(function(){
$("div.class3").click(function() {
obj = $(this).parent().parent();
alert(obj.prop('class'));
});
})