gpt4 book ai didi

javascript - JQuery:如何在正文中添加脚本?

转载 作者:行者123 更新时间:2023-11-30 15:34:03 26 4
gpt4 key购买 nike

    <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>

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

最佳答案

如果你想让 jquery 中的所有事件在 DOM 加载后执行,那么使用:

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

关于javascript - JQuery:如何在正文中添加脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41843630/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com