gpt4 book ai didi

javascript - JS 不工作

转载 作者:行者123 更新时间:2023-12-02 14:20:21 25 4
gpt4 key购买 nike

我不明白为什么简单的代码在我的浏览器中不起作用。

    <head>
<script src="../static/js/jquery-1.12.3.min.js" ></script>
<script src="../static/js/jquery-ui.min.js"></script>
<link href="../static/js/jquery-ui.min.css" rel="stylesheet"/>
<script>
$("#totalCart").html("99,75");
</script>
</head>

<body>
<div id="totalCart">Total </div>
</body>

当我在 Chrome 中启动此代码时,我什么也没看到,为什么?

最佳答案

您在加载 DOM 之前使用了选择。

最好的做法是将所有脚本包含在正文的末尾

或者你可以使用

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

关于javascript - JS 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38693167/

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