Get href attribute on jQuery

后端 未结 6 1414
眼角桃花
眼角桃花 2021-02-12 13:24

I have some table rows


    
        
      
6条回答
  •  情歌与酒
    2021-02-12 13:51

    Use this:

    $(function(){
        $("tr.b_row").each(function(){
        var a_href = $(this).find('div.cpt h2 a').attr('href');
        alert ("Href is: "+a_href);
    
        });
    });
    

    See a working demo: http://jsfiddle.net/usmanhalalit/4Ea4k/1/

提交回复
热议问题