Home > Web Front-end > JS Tutorial > body text

Example of usage of prevUntil() method in jQuery_jquery

WBOY
Release: 2016-05-16 16:21:28
Original
1156 people have browsed it

The example in this article describes the usage of prevUntil() method in jQuery. Share it with everyone for your reference. The specific analysis is as follows:

This function searches all sibling elements before the matching element until it encounters an element that matches an expr expression, DOM element, or jQuery element.
You can use optional expressions to filter the collection of sibling elements.

Note: Ancestor elements do not contain elements matching expr expressions, DOM elements or jQuery elements.

Grammar:

Grammar 1:

Copy code The code is as follows:
$(selector).prevUntil(expr,filter)

Parameter list:
Parameter
参数 描述
expr 可选。用于筛选祖先元素的表达式。
filter 可选。用于对取得的祖先元素集合进行筛选。
Description
expr Optional. Expression used to filter ancestor elements.
filter Optional. Used to filter the obtained collection of ancestor elements.

实例:

实例一:

复制代码 代码如下:






脚本之家






 

我是p元素


  我是span元素
 

我是p元素


 
我是div元素




实例二:

复制代码 代码如下:






脚本之家






 

我是p元素


  我是span元素
 

我是p元素


 
我是div元素




语法二:

复制代码 代码如下:
$(selector).prevUntil(element,filter)

参数列表:
参数
参数 描述
element 可选。用于筛选祖先元素的DOM元素或者jQuery元素
filter 可选。用于对取得的祖先元素集合进行筛选。
描述
element 可选。用于筛选祖先元素的DOM元素或者jQuery元素
filter 可选。用于对取得的祖先元素集合进行筛选。

实例:

实例一:

复制代码 代码如下:






脚本之家






 

我是p元素


  我是span元素
 

我是p元素


 
我是div元素




实例二:

复制代码 代码如下:






脚本之家






 

我是p元素


  我是span元素
 

我是p元素


 
我是div元素




希望本文所述对大家的jQuery程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template