对于 Object #类型的内容有哪些可用方法
我仍然对 Mootools 中的 NodeList 对象感到困惑,希望有人能帮助澄清。
我正在使用 Request.HTML 发出一个简单的 HTML 请求。这是代码:
var req = new Request.HTML({
url: my_url,
onSuccess: function(response) { alert(response) }
});
req.send();
在服务器端,我只是渲染一些文本(特别是“这是一个响应”)。警报显示“[oject NodeList]”,我想知道我可以调用什么方法来让警报显示“这里是响应”。
我知道 alert(response[0])
显示“[object Text]”。我还发现,如果我在 onSuccess 函数中间放置一条断线并键入(在控制台中)response[0] + Enter,它会显示我的“这是响应”文本。我只是不知道如何让警报显示“这是回复”....
谢谢
I'm still befuddled by the NodeList object in Mootools, and I'm hoping someone can help clarify.
I'm making a simple HTML request using Request.HTML. Here's the code:
var req = new Request.HTML({
url: my_url,
onSuccess: function(response) { alert(response) }
});
req.send();
On the server side, I'm just rendering some text ("here's a response", specifically). The alert shows "[oject NodeList]", and I'm wondering what methods I can call on it to get the alert to show "here's a response".
I know that alert(response[0])
shows "[object Text]". I also figured out that if I put a break line right in the middle of my onSuccess function and type (in the console) response[0] + enter, it show's my "here's a response" text. I just can't figure out how to get the alert to show "here's a response"....
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 mootools 文档:
看起来您想要 onSuccess 回调函数中的第三个参数。回到你的例子:
from the mootools docs:
looks like you want the third argument in the onSuccess callback function. so back to your example: