0

H5BP 是否假设您将编写 JavaScript 和 jQuery 代码,以便它仅在窗口完全加载时执行(使用 onload 侦听器)?我问的原因是 H5BP 将 jQuery 包含脚本标记定位在 body 标记的底部,如下所示。但是,除非我将 jquery.min.js 脚本元素移动到主体之前的 head 元素(从而执行 cookie 脚本),否则设置 cookie 的脚本将不起作用。谢谢。

<!DOCTYPE html>
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
        <title></title>
        <meta name="description" content="">
        <meta name="viewport" content="width=device-width">
        <script src="js/vendor/modernizr-2.6.2.min.js"></script>
    </head>
    <body>
        <p>This is HTML5 Boilerplate.</p>

        <!-- Cookie isn't set when jquery.min.js follows this element block  -->
        <script>
            var test_profile = { browserWidth: $(window).width() };
            document.cookie = "test_profile=" + JSON.stringify(test_profile);
        </script>

        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
        <script>window.jQuery || document.write('<script src="js/vendor/jquery-1.9.1.min.js"><\/script>')</script>
    </body>
</html>
4

1 回答 1

0

第一个<script>块依赖于 jQuery ( $(window).width()),因此在加载 jQuery 之前不能使用它。

只需将该 cookie 脚本移到其他两个<script>块之后:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.9.1.min.js"><\/script>')</script>

<script>
    var test_profile = { browserWidth: $(window).width() };
    document.cookie = "test_profile=" + JSON.stringify(test_profile);
</script>
于 2013-06-12T20:57:17.893 回答