从jQuery对象中删除项目

前端之家收集整理的这篇文章主要介绍了从jQuery对象中删除项目前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
jQuery可以很容易地从DOM中删除节点。但是如何从jQuery对象中删除一些东西呢?

解决方法

如果你正在谈论从jQuery对象中删除节点,使用过滤器或不是函数See here for more

如何使用过滤器:

var ps = $('p');

//Removes all elements from the set of matched elements that do 
//not match the specified function.
ps = ps.filter(function() {
  //return true to keep it,false to discard it
  //the logic is up to you.
});

要么

var ps = $('p');

//Removes all elements from the set of matched elements that 
//do not match the specified expression(s).
ps = ps.filter('.selector');

如何使用不:

var ps = $('p');

//Removes elements matching the specified expression 
//from the set of matched elements.
ps = ps.not('.selector');
原文链接:https://www.f2er.com/jquery/185462.html

猜你在找的jQuery相关文章