gpt4 book ai didi

javascript - 显示 javascript 警报并执行其他操作?

转载 作者:行者123 更新时间:2023-11-28 11:05:24 26 4
gpt4 key购买 nike

这是我的代码,没有任何反应:

<!DOCTYPE html>
<html>
<head>

<script src="http://code.jquery.com/jquery-git.js"></script>

<script>
$(".clickMe").click(function() {
alert('hi!');
// Do other stuff
});
</script>

</head>
<body>

<div class="clickMe">Click Me!</div>

</body>
</html>

但是,当您单击“clickMe”div 时,没有任何反应。

谢谢!

最佳答案

准备好文档

$(function(){
$(".clickMe").click(function() {
alert('hi!');
// Do other stuff
});
})

按照您的方式,div 尚不可用(DOM 未加载),因此不会添加点击处理程序。您需要等待文档可用。 .ready()就是用于此目的。

$(document).ready(function() {...})
$(function() {...}) - Shortcut

关于javascript - 显示 javascript 警报并执行其他操作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5810920/

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