JQuery:如何在正文中编写脚本?

时间:2017-01-25 04:52:48

标签: javascript jquery html

    <script>
        /* set #splash-bg height */
        $(window).on('load',function(){
            var splashbgHeight = $("#meat").css("top");
            $("#splash-bg").css("height",splashbgHeight);
            $(window).resize(function(){
                var splashbgHeight = $("#meat").css("top");
                $("#splash-bg").css("height",splashbgHeight);
            });
        });
    </script>

我在body标签的HTML文档中有这个脚本。我必须用$(document).ready()或类似的东西作为前言吗?

1 个答案:

答案 0 :(得分:2)

如果您希望在DOM加载后执行jquery中的所有事件,请使用:

$(document).ready(function(){//your code here})