jQuery 单击 SlideUp 不起作用
$("#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
张策说的话。
您无法绑定对可能尚不存在的 div 的点击 <3
What Chuck said.
You can't bind a click on a div that might not exist yet <3
没有提到的一件事是回调函数,它并不真正适用于这里,但对于那些遇到这个问题并且这不能解决问题的人来说,请确保您没有像“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:
Like I say, just in case :)