The example in this article describes the usage of header selector in jQuery. Share it with everyone for your reference. The specific analysis is as follows:
This selector can match heading elements, that is (h1-h6).
Grammar structure:
Example code:
Example 1:
The above code can set the text color in the title element whose class attribute value is qiantai to blue.
Example 2:
Since the above code does not specify a selector to be used with the :header selector, it is used with the * selector by default. Therefore, the above code can set the text color of the title element in all elements in the current document to blue.
I hope this article will be helpful to everyone’s jQuery programming.