我有一个页面:
www.example.com/?Id=1
它的一部分是使用 jquery ajax Get 请求引导的,如下所示:
$.get(
'/Home/GetContent',
{ Id: Id },
function (response) {
$("#Content").text(response);
}
);
内容html是:
<p id="Content"></p>
我想让这个页面可以被谷歌索引。不幸的是,我看不到谷歌指南是如何给出的:
可以适用于我的情况。任何反馈将不胜感激。谢谢。