我正试图让它发挥作用:$( '> p', this )
。基本上我想直接在<p>
中获取this
,任何想法?
答案 0 :(得分:4)
我会这样做...... $(this).children("p")
答案 1 :(得分:2)
您可以使用:
$(this).find('> p');
或者:
$(this).children('p');
但是这些与你当前的选择器或多或少完全相同;所以,在你解释什么不起作用或出了什么问题之前,我不能提供具体有用的建议。
答案 2 :(得分:2)
这对你有用......
$(this).children('p')
答案 3 :(得分:2)
答案 4 :(得分:2)