使用mootools request.html从外部页面加载id元素
我的问题与这个问题类似 如何使用 MooTools 和 Request.HTML 从远程页面获取元素?
不幸的是,我对 mootools 根本不熟悉,但我被迫将其用作网站上的许多其他组件。网站依赖这个框架。
我试图从外部页面获取一个元素并将其插入到我页面上的 div 中。
在 jquery 中,这很简单 $('#result').load('ajax/test.html #container');
上面的问题抓取了一个元素,但我不知道如何插入将该内容放入我的页面 div 中。
我还需要每 30 秒重新加载内容的元素,但我完全不知道如何使用 mooTools 来实现这一点。
谢谢
Tim
My question is similiar to this question How do you grab an element from a remote page using MooTools and Request.HTML?
I unfortunately am not familiar with mootools at all but am being forced to use it as a number of other components on the website rely on this framework.
I am trying to grab an element from an external page and insert that into a div on my page.
In jquery this is nice and easy $('#result').load('ajax/test.html #container');
The above question grabs an element but I don't see how to insert that content into my pages div.
I also need the element to reload the content every 30sec which I have absolutely no idea how to achieve this using mooTools.
Thanks
Tim
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是 1.11 的做法
编辑:刚刚添加了每 30 秒执行一次 ajax 请求的函数
我认为调用甚至不触发的原因是因为它没有放置在 domready 函数中,它不会像在 jquery 中那样发生,您只需将它们放在 a: 中
that's how you do it for 1.11
edited: just added the function to do the ajax request every 30 seconds
i assume the reason why the call doesnt even fire is because it isnt placed inside a domready function, it does not happen like in jquery where you simply place them inside a: