1

嗨,我想得到这个李的父母

     <li><a href="/panasonic/index.php/en/site/wheretobuy" class="WTB"></a>
        <ul>        
    <li><a href="/panasonic/index.php/en/showroom/index" id="myid" > testing</a> </li>    
       </ul>    
   </li>

如何获得“myid”的父 href。

我只有这个

document.write($('#myid').parent('li').find('a').attr('href'));

显示“.../showroom/index”,我使用 document.write() 只是为了测试。

我希望它显示“.../wheretobuy”,并且必须通过“myid”访问

这里是这里

http://fiddle.jshell.net/86powers/YLYxF/

谢谢

4

1 回答 1

4
$('#myid').closest('ul').parent().find('a').attr('href')

这应该有效。

于 2013-02-16T09:39:33.253 回答