jQuery选择函数
Posted xiaohu666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery选择函数相关的知识,希望对你有一定的参考价值。
jQuery选择函数
1.$(‘#some-id‘).parent() 选择特定元素的父元素
2.$(‘#some-id‘).next() 选择特定元素最近的下一个同级元素
3.$(‘#some-id‘).siblings() 选择特定元素的所有同级元素
4.$(‘#some-id‘).find(‘.some-class‘) 选择特定元素下所有包含特定类的元素
5.$(‘#some-id‘).find(‘td‘).not(‘:contains("Henry")‘) 选择特定元素下表格内容不包含Henry的所有元素
5.$(‘#some-id‘).find(‘td‘).not(‘:contains("Henry")‘).end() .end()表示回到最后一次.find()的元素处
以上是关于jQuery选择函数的主要内容,如果未能解决你的问题,请参考以下文章