Moo 1.1 与 1.2 中的 Mootools 元素
我有一个使用 mootools 1.1 来处理 Ajax“表单”的脚本,该脚本执行类似的操作,以在实际处理它们之前了解(动态创建的)表单中有多少行:
form_rows = $$('#form_row'); // X can be anywhere from 4-20
console.log(form_rows.length); // in moo 1.1 this returns X-- with moo 1.2 it returns 1
阅读 moo 1.2 文档,它看起来这在任何一种情况下都应该工作相同 - 但 moo 1.2 总是只返回第一个“form_rows”元素,而不是全部。
谁能解释为什么?
感谢您的任何帮助。
I've got a script using mootools 1.1 to handle an Ajax "form" that has does something like this to get an idea of how many rows are in the (dynamically created) form before actually handling them:
form_rows = $('#form_row'); // X can be anywhere from 4-20
console.log(form_rows.length); // in moo 1.1 this returns X-- with moo 1.2 it returns 1
Reading the moo 1.2 docs, it looks like this should work the same in either case-- but moo 1.2 always returns only the first "form_rows" element, not all of them.
Can anyone explain why?
Thanks for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
#form_row
表示一个 ID。每页只能有一个唯一 ID。如果您需要多个 el,请分配并选择类。#form_row
implies an ID. There can only be one unique ID per page. Assign and select classes if you need multiple els.