微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

phpQuery中最接近的方法?

我试图看看是否有办法实施
PHPQuery上的“最接近”方法(就像它在jQuery上工作一样).
有这样的事吗?

解决方法

Commonly Confused Bits Of jQuery开始:

CLOSEST(SELECTOR)

This is a bit of a well-kept secret,but very useful. It works like parents(),except that it returns only one parent/ancestor. In my experience,you’ll normally want to check for the existence of one particular element in an element’s ancestry,not a whole bunch of them,so I tend to use this more than parents().

因此,当PHPQuery中存在parents()时,您可以使用源代码中的示例

Tip: you can simulate closest() by using parents() and limiting it to one returned element.

$($('#element1').parents('#element2').get(0)).css('background','#f90');

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐