使用Jquery显示内容(View-Source)

时间:2013-04-07 15:05:31

标签: jquery ajax yql

我使用以下代码使用Jquery / Ajax显示远程网站之一的内容。
代码工作得很好,问题是当我在浏览器中执行View-Source时,实际内容没有显示。只显示Jquery代码。所以我想要做的是当我在浏览器中查看源代码时,应该显示实际内容并记住SEO。

这可能吗?

<script type="text/javascript" language="javascript">
    $(document).ready(function() {
        var directoryName = 'anthropology';
        $.ajax({
            type: 'GET',
            url: "http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20html%20where%20url%3D%22http%3A%2F%2Fd4426411.u92.gohsphere.com%2F%22%20and%20xpath%3D%22%2F%2Fdiv%5B%40id%3D'page'%5D%22",
            dataType: 'html',
            success: function(data) {
                $(data).find('a').attr('href', function(_, href) {
                return href.replace('http://d4426411.u92.gohsphere.com/', 'http://www.abc.com/blog/default.htm/')
                }).end().appendTo('#content_area');                     
            }
        });
    });
</script>


</head>

<body>
<div id="space"><br /></div>
<div id="content_area">
</div>

0 个答案:

没有答案