0

我正在使用以下代码来显示使用 Jquery/Ajax 的远程网站之一的内容。
代码效果很好,问题是当我在浏览器中查看源代码时,实际内容没有显示。只显示 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>
4

0 回答 0