我编写了以下jQuery,以遍历HTML部分中的每个<a>对象:

$(".chapterindex" + key + " div.link a").each(function(intIndex){
  alert("Numbered index: " + intIndex);
});
});


jQuery第一行中使用的键值来自我手动构建的URL数组,如下所示:

var chapters = new Array();
chapters[0] = "original/html/0/ID0EFJAE.html";


我可以提醒intIndex给出0,1,2,3,4,5....等信息。

但是,如何扩展上面的jQuery,以从HTML中找到的每个链接获取href属性?

最佳答案

尝试这个:

$(".chapterindex" + key + " div.link a").each(

    function(intIndex){
        alert( "Numbered index: " + intIndex );

        var href = $(this).attr('href');
    });
});

07-21 14:18