最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - find each link with jquery and a html string - Stack Overflow

programmeradmin2浏览0评论

I want to find every "a" tag in this HTML string

$(document).ready(function(data) {
    $.get('test.html',
        function(responseText){
        //find each a tag   
        }, "html"
    )
});

Why is that so damn difficult for me ?

I want to find every "a" tag in this HTML string

$(document).ready(function(data) {
    $.get('test.html',
        function(responseText){
        //find each a tag   
        }, "html"
    )
});

Why is that so damn difficult for me ?

Share asked Jul 25, 2011 at 10:43 danielovichdanielovich 9,6977 gold badges28 silver badges29 bronze badges
Add a ment  | 

5 Answers 5

Reset to default 7

getting all links and doing something with them:

$.get('test.html', function(responseText) {
    var $response = $(responseText);
    var $links = $response.find('a');
    $links.each(function(index, $link) {
        // go nuts
    });
});

for more, read the jQuery documentation - its pretty good!

I am not sure whether any of the code works if the responseText is a string.
You have to HtmlEncode it using jQuery first and then find your anchor tag.

Example:

$("<div/>").html(responseText).find('a').each(function(idx, elm) {
    //here are your anchors
    //alert(elm.href);
});

Working Demo: http://jsfiddle/naveen/Tcp3t/

Hope this helps.

try this:

$(responseText).find('a')

Create a jQuery object of the HTML and use .find():

$(responseText).find('a');

It seems that you get the right answer. But you could have faced a link in plain text without any reference tag to find it as I did.

I've found this jquery plugin that can indetify links inside a text and then create the tags

Hope It will help somebody

Jquery Linkify

发布评论

评论列表(0)

  1. 暂无评论