First of all, let’s explain the extracurricular knowledge points in this chapter
1.element.css("attributeName","value")
Description: used to set the style of element, in the example $(this) .css("background","red"); is to set the background of the node to red.
Now let’s get to the topic
1.$("TagName:contains('keyword')")
Description: Used to obtain the node collection containing keyword content in all TagName nodes
Return value: Array (Element);
2.$("TagName:Empty")
Description: Used to obtain the node collection with empty content in all TagName nodes
Return value: Array(Element);
3.$("TagName1:has(TagName2))
Description: Used to obtain the node set containing TagName2 child nodes among all TagName1 nodes
Return value: Array(Element);
4.$( "TagName:parent")
Description: Used to obtain the node set including child nodes in all TagName nodes
Return value: Array(Element);