即使使用我的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>
由于某种原因,这不是艺术品的注册。任何帮助表示赞赏!
答案 0 :(得分:1)
您忘记关闭就绪处理程序:
$(document).ready(function() {
$('#trigger-modal-editor').click(function() {
alert('Hello');
});
});//this
此外,您在#trigger-modal-editor
内没有任何文字,请在其中放置一些文字进行点击。