标签:
.not()----------.hasClass() has()
一个div同时有select selected属性:
$(parentDiv).find(‘.select‘).not(‘.selected‘).css("background",‘#333‘);
$(parentDiv).find(‘.select‘).hasClass(‘selected‘).css("background",‘#333‘);
$(parentDiv).find(‘.select‘).has(‘.selected‘).css("background",‘#333‘);
.filter()
筛选作用
$(parentDiv).filter(‘.selected‘) -----此时等同于find()
$(parentDiv).filter(“:selected”)----option属性筛选
$(parentDiv).filter(‘[ data-pid = 2 ]‘)
.
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/liu__hua/article/details/47336929