使用mootools访问父窗口中的类

发布于 2024-12-10 06:21:19 字数 167 浏览 0 评论 0原文

我有类似的东西 v = $$('.module'); 然后访问此 v 变量内的对象的代码,它起作用了,但是...

我必须将整个内容移至弹出窗口(mootools 新窗口)内,但具有类模块的元素仍保留在主页中。

有没有办法在主页中而不是在弹出窗口中选择带有类模块的元素??? 谢谢你, 缺口

I have something like
v = $$('.module');
and then code that accesses objects inside this v variable, and it worked, but...

I had to move the whole thing inside a popup (mootools new Window) but the element with class module has remained in the main page.

Is there any way to select the element with class module in the main page and not in the popup window???
thank you,
Nick

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

予囚 2024-12-17 06:21:19
$(parent.document.body).getElements('.module')

$(parent.document.body).getElements('.module')

?

土豪我们做朋友吧 2024-12-17 06:21:19

您是否尝试过 Element.getFirst ?这将获取与选择器匹配的第一个元素。

如果您只想选择该元素,您也可以尝试向该元素添加一个 id 吗?

Have you tried Element.getFirst? This will get the first element that matches a slector.

You could also try adding an id to your element if you want to select only that element?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文