将函数应用于 JQuery 插入的对象
我有一个函数,它将一个 div 附加到 div(2) 中。在 div(2) 内我有一个跨度。如果我单击此跨度,将执行一个函数。(click() 函数)
目前,如果 jQuery 插入 div(2),我无法通过 onclick() 应用任何函数。 如果我直接插入 div(2) (硬编码),我可以执行该函数。
如何将函数应用于 jQuery 插入的对象?
I have a function, which appends a div into a div(2). Inside div(2) I have a span. if I click this span, a function shall be executed.(click() function)
Currently I can not apply any function by onclick(), if div(2) gets inserted by jQuery.
If I insert div(2) directly (hardcoded) I can execute the function.
How can I apply a function to an object which is inserted by jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
delegate()
处理未来元素的事件 - 那些不是也是 DOM 的一部分:Use
delegate()
to handle events for future elements — those which are not yet part of the DOM:理想情况下,您希望插入元素的 jQuery 代码也附加单击处理程序。
的函数
因此,扩展调用
$(div).append(div2)
也可以调用
Ideally you want to have your jQuery code that inserts the element also attach the click handler.
So extend your function that calls
$(div).append(div2)
To also call