如何对表单中所有选中的项目运行脚本效果?
我创建了一个包含多个项目的长表单,每个项目旁边都有一个复选框。我想要做的是允许用户检查他们不想要的所有行,然后让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 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.
$$('body').first().select('input:checked').invoke('dropOut');
这是 Prototype.js 代码。
$$('body').first().select('input:checked').invoke('dropOut');
This is Prototype.js code.