example.js.php
是否可以使用is()?
检查多个选择器作为变量答案 0 :(得分:2)
你可以使用这个选择器
this.is('.container, .background')
基本上, 1)
if (this.is('.container, .background')) {
// do something
}
<强> 2)强>
var elements = ('.container, .background');
if (this.is(elements)) {
}
第3)强>
if (this.is([container[0], background[0]])) {
// do something
}
<强> 4)强>
if (this.is(container.add(background))) {
// do something
}
<强> 5)强>
var temp = container.add(background);
if (this.is(temp)) {
// do something
}