无法使用jQuery选择器访问click事件

时间:2015-01-26 00:28:31

标签: javascript jquery html jquery-selectors

即使使用我的jQuery选择器,我也很难访问点击。这是我的HTML:

<li class="handle-bars">
    <span class="fa fa-bars pull-right text-primary m-t-10"></span>
    <span class="fa fa-cogs pull-right text-primary m-t-10" id="trigger-modal-editor" style="cursor:pointer" data-target="#modalSlideLeft" data-toggle="modal">     </span>
</li>

这是我的jQuery选择器:

<script>
$(document).ready(function() {
  $('#trigger-modal-editor').click(function() {
    alert('Hello');
  });
</script>

由于某种原因,这不是艺术品的注册。任何帮助表示赞赏!

1 个答案:

答案 0 :(得分:1)

您忘记关闭就绪处理程序:

$(document).ready(function() {
  $('#trigger-modal-editor').click(function() {
    alert('Hello');
  });
});//this 

此外,您在#trigger-modal-editor内没有任何文字,请在其中放置一些文字进行点击。