javascript - jQuery find()如何查找text(‘a')的div
ringa_lee
ringa_lee 2017-04-11 11:37:05
0
1
510

例如:

$('ul').find('li.a').操作;

这样很容易,如何利用find找.text('a')的p呢?

$('body').find(????);
ringa_lee
ringa_lee

ringa_lee

全部回覆(1)
巴扎黑

用filter
$('body').filter(function(){ return $(this).text() === 'a';})

http://www.w3school.com.cn/jquery/traversing_filter.asp

http://www.css88.com/jqapi-1.9/filter/

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!