选择多个缓存元素
在 jQuery 中,您可以通过 id 选择两个元素,例如: $('#elem, #elem2');
但是,
如果您缓存了 elem 和 elem2,又该如何对它们应用相同的方法/函数呢?
即
$elem = $('#elem'); $elem2 = $('#elem2');
这显然行不通:
$($elem, $elem2)
谢谢!
In jQuery you can select two elements by id like: $('#elem, #elem2');
BUT
What if you have cached the elem and elem2, and what to apply the same method/function to them both?
i.e.
$elem = $('#elem');
$elem2 = $('#elem2');
This obviously wont work:
$($elem, $elem2)
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 add 方法:
Use the add method:
使用 jquery 数据 api http://docs.jquery.com/Data
Use the jquery data api http://docs.jquery.com/Data
这对我有用:
并且经过一些性能测试后得到了比这更好的结果:
This worked for me:
and had after some performance testing a way better result than this: