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');

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...