Moo 1.1 与 1.2 中的 Mootools 元素

发布于 2024-10-13 05:16:55 字数 374 浏览 2 评论 0原文

我有一个使用 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 技术交流群。

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

发布评论

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

评论(1

愁以何悠 2024-10-20 05:16:55

#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.

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