jQuery 不会在动态加载的内容上执行,即使在单击事件上也是如此
我有两个 document.ready()
函数。第一个将内容加载到 div#header
中。第二个执行隐藏功能,然后对新加载的内容执行切换功能。我不确定这是否是排队问题或其他问题,但当我单击加载的内容时,甚至没有执行下面的 alert()
。谢谢。
<script type="text/javascript">
$(document).ready(function() {
$("#header").load("/documents/collegeradioheader.txt");
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$(".hideme").hide();
$(".slick-toggle").click(function() {
alert('hi');
$(this).parent().next('div').slideToggle('fast');
});
});
</script>
编辑:简化代码
I have two document.ready()
functions. The first loads content into div#header
. The second one performs a hide function and then a toggle function on the newly loaded content. I am not sure if this is a queueing issue or something, but not even the alert()
below is executed when I click the loaded content. Thanks.
<script type="text/javascript">
$(document).ready(function() {
$("#header").load("/documents/collegeradioheader.txt");
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$(".hideme").hide();
$(".slick-toggle").click(function() {
alert('hi');
$(this).parent().next('div').slideToggle('fast');
});
});
</script>
Edit: simplified code
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
虽然
live
是一个可行的解决方案,但有一个完整< AJAX
load
中的 /code> 事件在加载完成时触发。Although the
live
is a working solution, there is ancomplete
event in the AJAXload
that fires when the load has finished.单击绑定可能发生在
.load
完成之前。尝试将您的.click
替换为.live
版本:The click binding is probably happening before the
.load
is finished. Try replacing your.click
with a.live
version: