<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()或类似的东西作为前言吗?
答案 0 :(得分:2)
如果您希望在DOM加载后执行jquery中的所有事件,请使用:
$(document).ready(function(){//your code here})