Jquery函数不适用于href id

时间:2015-07-28 12:48:33

标签: javascript jquery html

我在html中有以下代码

<a href="javascript:void(0);" class="delete" id="delete-this">X</a>

和jquery

$('#delete-this').on( "click", function() {
      alert('test');
   });

但点击'X' - &gt;它没有调用Jquery函数来提醒。我不知道如何调试这个。有人可以帮我吗?

1 个答案:

答案 0 :(得分:-1)

添加jquery

<script src="//code.jquery.com/jquery-1.10.2.js"></script>

你的代码是对的 -

但您可以绑定您对文档的点击

$(document).on( "click",'#delete-this', function() {
      alert('test');
   });