ActiveScaffold:将 JQuery Javascript 事件附加到新打开的子表单
我想将 JQuery 函数附加到更新表单中的输入字段。该表单是标准的 ActiveScaffold,通过单击列表视图中的“编辑”链接打开。如何注册该函数——什么事件表明子表单已打开且 DOM 已准备就绪?新页面尚未加载,因此 onload() 函数不会执行此操作。
I want to attach a JQuery function to an input field in an update form. The form is standard ActiveScaffold, opened by clicking on the Edit link in the list view. How do I register the function -- what event signals that the subform has been opened and the DOM is ready? A new page has not been loaded so the onload() function doesn't do it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
.live()
方法,你不必知道当元素真正被附加时。Use the
.live()
method, and you do not have to know when the element actually gets attached.