gpt4 book ai didi

javascript - jQuery 使用 on 方法将函数绑定(bind)到按钮

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

我想使用 .on 方法将一个函数绑定(bind)到一个按钮。这是我的按钮:

 <button class="btn btn-primary col-md-offset-2 col-md-4" type="button" id="reg">Register</button>

这是我的脚本。

$(document).ready(function(){
$("#reg").on("click", function(){
alert("Its working!!!");
});
});

我知道我的代码没有错,但我仍然无法让它工作....我已经在我的 <head> 中包含了所有的库。 .但是按钮什么都不做。

最佳答案

你没有错,你的代码工作正常

$(document).ready(function(){
$("#reg").on("click", function(){
alert("Its working!!!");
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<button class="btn btn-primary col-md-offset-2 col-md-4" type="button" id="reg">Register</button>

关于javascript - jQuery 使用 on 方法将函数绑定(bind)到按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34151201/

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