-1
有沒有一種方法來測試您的當前URL位置是否與您網頁上的鏈接相匹配,但是還要檢查匹配鏈接的父母(或祖父母)div是否具有特定的div類?父母和祖父母div類檢查
例如 jQuery的(文件)。就緒(函數($){
// find a-href on page with matching current location URL link
jQuery("*").find("a[href='"+window.location.href+"']").each(function(){
// if matching a-href's parent contains class .aaa
// then BBB action
// else if matching a-href's grand-parent contains class .bbb
// then CCC action
})});