Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试执行一个将在 colorbox 关闭后运行的函数。此函数旨在通过使用关闭的颜色框中新插入的值刷新页面上的选择元素来更新基础页面。我已经阅读了一些可以在 cbox_closed 事件上运行函数的地方。如何引用父页面的 ajax 函数来更新“选择”元素?谢谢。
一般来说,ColorBox 在父级的整体执行上下文中运行。您应该像从父级中的其他 js 中一样引用所需的元素。
例如,如果父页面有一个 ID 为“myElement”的元素,您可以在通过 cbox_closed 事件触发器执行的函数中引用“#myElement”。
为获得更高的特异性,请为元素添加前缀,例如parent.elementID或parent.formname.elementID。