0

我想分别针对以下“列表”项目并为每个项目单独修改href。但是,我想在“列表”没有特定 div 标签/类的情况下这样做。可能吗?

<li><a href="javascript:;">Category 1</a></li>
<li><a href="javascript:;">Category 2</a></li>
<li><a href="javascript:;">Category 3</a></li>
4

1 回答 1

0

如果使用 jquery,您可以执行以下操作:

$.each($("li a"), function(){
     var href = $(this).attr('href');
     var text = $(this).text();
     //now you have your href and text
     if(text == 'Category 1'){
        //updated to change the link to a different URL
        $(this).attr('href', 'http://www.your-new-link');
     }
     if(text == 'Category 2'){
        //do something else
    }
});
于 2013-10-13T12:51:59.277 回答