如何使用is()方法使用多个变量(选择器)

时间:2016-05-27 11:15:34

标签: javascript jquery

example.js.php

是否可以使用is()?

检查多个选择器作为变量

1 个答案:

答案 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
}