使用mootools访问父窗口中的类
我有类似的东西 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
?
?
您是否尝试过 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?