gpt4 book ai didi

jquery - 为什么这个 JQuery 内部 html 设置不起作用?

转载 作者:行者123 更新时间:2023-12-01 06:27:47 25 4
gpt4 key购买 nike

我一直在努力解决这个问题,但似乎不起作用。我已经在互联网和 stackoverflow 上搜索了答案,但我似乎找不到任何真正适用于此的东西。如果有人能在这里帮助我,那就太棒了!

<html>
<head>
<script rel="javascript" type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js">

$(document).ready(function(){
$(".box").html("sing!!!!");
});
</script>

<style>
.box{
border:2px solid black;
padding:12px;
}
</style>
</head>

<body>
<div class="box">
This will be replaced with a JQuery statement.
</div>
<p>
This is text to be left UNALTERED.
</p>
</body>
</html>

最佳答案

jquery 的脚本标签未关闭。

 <script rel="javascript" type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>

<script>
$(document).ready(function(){
$(".box").html("sing!!!!");
});
</script>

关于jquery - 为什么这个 JQuery 内部 html 设置不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15314026/

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