如何对表单中所有选中的项目运行脚本效果?

发布于 2024-08-21 09:34:18 字数 145 浏览 7 评论 0原文

我创建了一个包含多个项目的长表单,每个项目旁边都有一个复选框。我想要做的是允许用户检查他们不想要的所有行,然后让 scriptaculous 使用 Effects.Dropout 函数删除所有这些行。

有没有一种简单的方法可以循环遍历所有选定的项目并删除它们?

I've created a long form of multiple items that each have a checkbox next to them. What I want to do is allow users to check all the lines that they don't want, and then have scriptaculous use the Effects.Dropout function to get rid of all of them.

Is there an easy way to loop through all of the selected items and drop them?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

私野 2024-08-28 09:34:18

如果您使用 jQuery 或 Prototype,您可以访问 .map 方法,这将允许您将效果应用于您选择的所有内容。

看一下 http://api.jquery.com/map/。有一些很好的例子,但如果您需要更多帮助,请告诉我。

If you're using jQuery or Prototype you have access to the .map methods which would allow you to apply an effect to everything you select.

Take a peek at http://api.jquery.com/map/. There are some great examples but let me know if you need more help.

云醉月微眠 2024-08-28 09:34:18

$$('body').first().select('input:checked').invoke('dropOut');

这是 Prototype.js 代码。

$$('body').first().select('input:checked').invoke('dropOut');

This is Prototype.js code.

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