如何处理按钮单击jquery

时间:2016-03-14 15:22:32

标签: jquery html

我需要在jquery中捕获click事件,这是我的HTML代码:

<input type="button" id="aggiungiDomande" value="+">

这是我的Jquery代码:

$('#aggiungiDomande').on('click',function(){
alert("HI");
});

我觉得我因为没有表现出来而感到愤怒。有人可以帮帮我吗?

2 个答案:

答案 0 :(得分:1)

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>


<script>
$("document").ready(function(){
$('#aggiungiDomande').on('click',function(){
alert("HI");
});
});

</script>
</head>
<body>

<button id = "aggiungiDomande">Click me</button><br><br>

</body>
</html>

答案 1 :(得分:0)

您可以尝试这样的事情:

$(document).on('click', '#aggiungiDomande',function(){
    alert("HI");
});

如果执行代码时按钮不存在,则不会绑定任何事件。您可以在此处详细了解事件绑定:http://api.jquery.com/on/