如何选择逆选择
我成功选择了
。
的第一个
我想选择除当前选定的
之外的其余
我该如何选择它?
根据要求编辑
var newEle = $(str); //str contains a <li> i.e., <li>Some content</li>
$(newEle).hide();
I am successful in selecting the first <li>
of the <ul>
.
I want to select the remaining of the <li>
except the current selected <li>
. i.e., (inverse).
How can I select it?
Edited as per request
var newEle = $(str); //str contains a <li> i.e., <li>Some content</li>
$(newEle).hide();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您是否需要这样的东西:
jquery
检查
Do you need something like this:
jquery
Check
http://api.jquery.com/not-selector/ 解决了我的问题
http://api.jquery.com/not-selector/ Solves my problem
假设您在数组中选择的结果,您可以使用 jQuery 方法
pop()
或splice(begin,end)
来选择您想要的元素。两者都记录在此处(就在“布尔默认值”标题之前)。Assuming the result of your selection in an Array you can use the jQuery methods
pop()
orsplice(begin,end)
to select the elements you want. Both are documented here (right before "Boolean default" headline).