gpt4 book ai didi

javascript - 这个 jQuery 示例有什么问题?

转载 作者:搜寻专家 更新时间:2023-11-01 05:02:55 26 4
gpt4 key购买 nike

下面的 jQuery 示例应该将一些文本放入 div,但它没有。我试过 Firefox、Google Chrome 和 Internet Explorer。

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" language="javascript"></script>
<script language="javascript">

$(window).load(function() {

$('adiv').html('<p>hello world</p>');
alert('done');

});
</script>
</head>

<body>
<div id="adiv">
</div>
</body>

</html>

抱歉,这可能很愚蠢,但我卡住了。

最佳答案

更改$('adiv').html('<p>hello world</p>');

$('#adiv').html('<p>hello world</p>');

关于javascript - 这个 jQuery 示例有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2663375/

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