加载内容内的 Ajax 链接
我在加载视图中使用 ajax->link 时遇到问题。
在我的索引页面中,我动态加载带有视图内容的 div。在这个视图中,我有一个 ajax-> 链接来更新内容本身。
如果我继续查看,更新工作正常。 因此,如果在加载的div中进行尝试,则不起作用。
Firebug,当我加载 div 时请注意我:
registry is undefined
var respondersForEvent = registry.get(eventName);
对此有任何解决方案吗?
I got problem using ajax->link inside a loaded view.
In my index page, i load dynamically a div with the content of a view. Inside this view i got a ajax->link to update content in itself.
If i go on the view, the update work correctly.
Therefore, if in try in the loaded div, it doesn't work.
Firebug, notice me when i load the div :
registry is undefined
var respondersForEvent = registry.get(eventName);
Is it any solution about this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决这个问题的方法是使用 jquery .live() 函数 之类的东西,它会发挥神奇的作用为你。如果这很有用并且您想从原型转移,请查看 这个 jquery 助手。
A workaround for this would be to use something like the jquery .live() function which will do the magic for you. If thats useful and you want to move from prototype, have a look at this jquery helper.