Javascript / jQuery $ .get (url) Анализ заголовка не работает - PullRequest
1 голос
/ 26 мая 2010

Хотя работает следующее: http://jsfiddle.net/N7D5r/

Моя попытка использовать тот же код не дает правильного названия . Они возвращают ноль по любой странной причине:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
    // Act on each link
    $('a').each(function(eachIteration){

        // Store current link's url
        var url = $(this).attr("href");

        $.get(url, function(response){
            alert("This is the url: " + url);
            if (((/<title>(.*?)<\/title>/m).exec(response)) != null)
                alert("This would be the title: " + (/<title>(.*?)<\/title>/m).exec(response)[1]);
            else
                alert("title was null");
         });        

    });
});
</script>
<title>test</title>
</head>

<body>
<p><a href="javascript:;">Javascript link</a></p>
<p>&nbsp;<a href="http://www.latentmotion.com">Misc. Link</a> and what else... <a href="http://www.latentmotion.com/how-to-create-a-jquery-bookmarklet/#comment-52004762">jQuery Bookmarklet Link</a></p>
<p> Some <a href="#test">anchor link</a> test.</p>
</body>
</html>

Есть идеи?


Примечание: Этот вопрос является продолжением вопроса переполнения стека, расположенного здесь: jQuery Can't $ (...). Load () заголовок заголовка в Chrome

1 Ответ

1 голос
/ 26 мая 2010

This is the url: /users/recent/205784 This would be the title: User antimatter15 - Recent - Stack Overflow This is the url: /about This would be the title: About - Stack Overflow This is the url: /faq This would be the title: FAQ - Stack Overflow This is the url: /users/205784/antimatter15

Ваш код работает. Может ли быть так, что ссылки находятся вне текущего домена и нарушают ту же политику происхождения?

...