gpt4 book ai didi

javascript - 无法使用 jQuery 选择器访问单击事件

转载 作者:行者123 更新时间:2023-12-03 10:59:48 27 4
gpt4 key购买 nike

即使使用我的 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 中没有任何文本,请在其中放置一些文本以供点击。

关于javascript - 无法使用 jQuery 选择器访问单击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28143235/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com