这是我的 jQuery
$(document).ready(function() {
$('#name').load('file.php?query=<?php echo urlencode($query); ?>', function() {
$('#loading').hide();
});
});
在初始 html 加载之后,然后将 file.php 中的内容加载到 id=name 的 div 中。这使我能够在缓慢移动的内容加载时显示加载图像。它很慢,因为它使用一些不同的 json api 来获取其内容。现在,file.php 上有一堆不同的链接。谷歌会跟随这些链接到其他页面。还是谷歌只会关注网页 html 初始加载时的链接?
我问这个是因为当我用浏览器查看网页源代码时,用 jquery 加载的动态加载内容不会显示在网页源代码中。