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

Not able to access click event with jQuery selector

即使使用 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>

出于某种原因,这不是注册艺术品。感谢您的帮助!

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

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

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