-3

我想将变量作为参数传递给.hasClass()

data = is specialclass
if($(".concon").hasClass(data))
{
    //do some thing
}

但是,这似乎不起作用。如何通过这种方法使用存储在变量中的类名?

4

2 回答 2

4

当你使用

var data = 1 ;

你正在传递一个数字,但你想传递一个字符串

var data = "1" ;

于 2013-01-30T13:54:50.563 回答
1
// Include jquery here

var the_class_name = "specialclass"; 

if($(".concon").hasClass(the_class_name))
    {
        //do something
    }
于 2012-08-14T15:03:14.150 回答