如何将#添加到var

时间:2011-05-13 15:40:31

标签: jquery

你有一些代码可以带回链接的类名

var activeTab = $(this).attr("class"); 

所以我们可以说上面带回了'one'的值

我需要将此附加为以下代码的#one

var activeTab = $(this).attr("class"); 
          $(activeTab).stop(true, false).animate({ height: "200px" });  

提前致谢

6 个答案:

答案 0 :(得分:1)

在Javascript中非常简单:

var_name = '#' + var_name;

答案 1 :(得分:1)

您可以使用+进行字符串连接:

$('#' + activeTab)

答案 2 :(得分:0)

var activeTab = $(this).attr("class"); 
activeTab = '#' + activeTab;
$(activeTab).stop(true, false).animate({ height: "200px" });

答案 3 :(得分:0)

$('#'+ activeTab)....

?!

var activeTab = $(this).attr("class"); 
$("#" + activeTab).stop(true, false).animate({ height: "200px" });

答案 4 :(得分:0)

var activeTab = "#" + $(this).attr("class"); 
$(activeTab).stop(true, false).animate({ height: "200px" });  

我认为这就是你想要做的事。

答案 5 :(得分:0)

您可以使用+运算符进行字符串连接,如下所示:

$('#' + activeTab)