jQuery 单击 SlideUp 不起作用

发布于 2024-10-16 21:02:32 字数 309 浏览 5 评论 0原文

$("#front").click(function () {
    $(this).slideUp();
});

<div class="a" id="front">
    <div class="b">
        <h1>...</h1>
        <p>..........</p>
    </div>
</div>

这段代码有什么问题吗 因为它不能正常工作。

$("#front").click(function () {
    $(this).slideUp();
});

and

<div class="a" id="front">
    <div class="b">
        <h1>...</h1>
        <p>..........</p>
    </div>
</div>

Is there anything wrong with this code? Because it does not work properly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

优雅的叶子 2024-10-23 21:02:32
$(document).ready(function() {
  $("#front").click(function () {
    $(this).slideUp();
  });
});
$(document).ready(function() {
  $("#front").click(function () {
    $(this).slideUp();
  });
});
风月客 2024-10-23 21:02:32

张策说的话。

$(document).ready(function() {
   $("#front").click(function () {
     $(this).slideUp();
  });
});

您无法绑定对可能尚不存在的 div 的点击 <3

What Chuck said.

$(document).ready(function() {
   $("#front").click(function () {
     $(this).slideUp();
  });
});

You can't bind a click on a div that might not exist yet <3

站稳脚跟 2024-10-23 21:02:32

没有提到的一件事是回调函数,它并不真正适用于这里,但对于那些遇到这个问题并且这不能解决问题的人来说,请确保您没有像“remove()”这样的东西。
如果你这样做,请使用:

$('#ele').slideUp(function(){
    $(this).remove();
});

就像我说的,以防万一:)

One thing that hasn't been mentioned is the callback function, it doesnt really apply here but for those of you who are having this issue and this doesnt solve it make sure you have nothing like a 'remove()' straight after.
If you do, use:

$('#ele').slideUp(function(){
    $(this).remove();
});

Like I say, just in case :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文