我有一个非常简单的静态HTML页面,只有一个div。我在<head>
中定义了一些静态数据,并希望jquery遍历此结构并将其附加到div startHere
中。
<body>
<div id='startHere'></div>
<script>
$("#startHere").append(<function to generate html from the data>)
</script>
</body>
这在浏览器中运行良好,我看到了我想看到的内容。但是,当我尝试使用“抓取为Google”时,我会看到一个只有标题的空白页面。
请求的状态在Google工具中显示为completed
。
知道为什么这个页面显示为空?