JQuery ins Selector

Source: Internet
Author: User

Contains Selector

The contains selector is the object containing the specified content, for example, $ ('td: contains ("abcd ")'). addClass ('highlight') is to find all cells that contain "abcd" and set the style type of these cells to add the "highlight" class.

The following code needs to be refreshed after running to load jquery
<! Doctype html public "-// W3C // dtd html 4.01 Transitional // EN" "http://www.w3.org/TR/html4/loose.dtd"> <ptml> <pead> </pead> <body> John Resig George Martin Malcom john Sinclair J. ohn </body> </ptml>
[Ctrl + A select all Note: If you need to introduce external Js, You need to refresh it to execute]

JQuery has two useful User-Defined delimiters: odd and even. Use the following code to set the odd and even rows of a table to different styles:
Copy codeThe Code is as follows:
$ (Document). ready (functioin (){

$ ("Tr: odd"). addClass ("oddstyle ");

$ ("Tr: even"). addClass ("evenstyle ");

});

Where, tr: odd Selects all the odd rows in the table, and then adds the style oddstyle; tr: even Selects all the even rows in the table, and then adds the style evenstyle. Of course, oddstyle and evenstyle must be defined in the css file first.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.