标签:选择 parent 匹配 元素 公式 层次选择器 for bsp 选择器
parent>child选择器中parent代表父元素,child代表子元素,用于在给定的父元素下匹配所有的子元素。使用该选择器只能选择父元素的直接子元素。
使用公式:$("parent>child")
parent:是指任何有效的选择器
child:是用以匹配元素的选择器,并且它是parent元素的直接子元素
示例:
$("form>input") //匹配表单中所有的子元素input
jQuery选择器-->层次选择器之parent>child选择器
标签:选择 parent 匹配 元素 公式 层次选择器 for bsp 选择器
原文地址:https://www.cnblogs.com/abner-pan/p/12846161.html