我正在尝试编写一个if
语句来检查节点的父节点是否是三个选择器之一is()
,但是is()
不支持多个选择器作为参数。我怎样才能完成类似的事情?:
if ($(this).parent().is('.first','.second','.third')) {
//do this thing
} else {
//do this other thing
}
我正在尝试编写一个if
语句来检查节点的父节点是否是三个选择器之一is()
,但是is()
不支持多个选择器作为参数。我怎样才能完成类似的事情?:
if ($(this).parent().is('.first','.second','.third')) {
//do this thing
} else {
//do this other thing
}
.first, .second, .third
是一个有效的选择器:
$(this).parent().is('.first, .second, .third')
查看以下API 文档中is()
的示例:
您可以指定一个逗号分隔的列表:
if ($(this).parent().is('.first,.second,.third')) {
//do this thing
} else {
//do this other thing
}