用于扩展表行的原型插件?
jQuery 有一个名为 jExpand 的插件,用于扩展表行。 Prototype 有等效的吗?
jQuery has a plugin called jExpand for expanding table rows. Does Prototype have an equivalent?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
jExpand 的源代码很小,我只是为您翻译了它。
只需使用
table.addJExpand()
调用它,其中table
是原型扩展变量。当您使用.each
时,您还可以使用Element.addJExpand
。不客气。
The source of jExpand is so small I just went ahead and translated it for you.
Just call it using
table.addJExpand()
, wheretable
is your prototype-extended variable. You can also useElement.addJExpand
for times when you're using.each
.You're welcome.