phpQueryObject::unbind PHP 메소드

unbind() 공개 메소드

..
public unbind ( unknown_type $type = null, unknown_type $callback = null ) : unknown
$type unknown_type
$callback unknown_type
리턴 unknown
    public function unbind($type = null, $callback = null)
    {
        foreach ($this->elements as $node) {
            phpQueryEvents::remove($this->getDocumentID(), $node, $type, $callback);
        }
        return $this;
    }