0

我正在检索这样的 div:

window.onload=  function get_all(){
  function get_header(){
        $('#main_header').load('/Head_footer.php #head_main');
    }

    $(function() {
        get_header();
    }); };

然而,源代码没有显示 div 中的内容,但它在网页中正确显示。

这是源代码显示的内容:

 <div id="main_header"><script type="text/javascript">
    window.onload=  function get_all(){
      function get_header(){
            $('#main_header').load('/Head_footer.php #head_main');
        }
        $(function() {
            get_header();
        });
}; </script>
    </div>

我想要的是源代码显示 div 中的内容。有没有办法做到这一点?欢迎任何帮助。

我问这个的原因是因为谷歌没有读取这个 div 中结构化数据的标记。因为它没有在源代码中显示

4

1 回答 1

0

在查看源代码中,您只能看到已经存在的东西。您看不到动态内容,但如果您想检查这些动态内容,请使用浏览器的开发者工具

对于 Firefox 右键单击​​页面并选择 Inspect Element 选项

于 2016-04-21T11:59:33.087 回答