gpt4 book ai didi

jquery - 为什么我的简单 jquery 不起作用?

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

我正在编写一些简单的 jquery,由于某种原因,我根本无法使其工作。我/知道/它在其他地方有效,但我要么丢失了某些东西,要么我的网络服务器上有错误。

代码如下:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>asdf</title>

<script src="jquery.js" type ="text/javascript"></script>


<script language ="javascript" type = "text/javascript">
//alert("number one");


$('#regSubmit').click(function(){

alert("Clicked!");

});

$('#test2').click(function(){
alert("yeah that worked.");
})

</script>
</head>
<body>


<input type ="button" id="regSubmit" value="Register!" />

<div id="test2">
Here is some other stuff!
</div>


</body>
</html>

所以我完全复制了该代码,但它对我不起作用。注释掉顶部(第一)附近的警报工作正常,因此它调用 jquery,但没有点击注册。

我做错了什么?

最佳答案

将您的 JavaScript 添加到

$(function(){
//your code
});

demo

这是必需的,因为您只能将事件绑定(bind)到元素,它们已经存在。当您在它们存在之前尝试此操作时,此示例代码会在加载整个页面后执行它,因此所有 html 都在那里

关于jquery - 为什么我的简单 jquery 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6964189/

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