$("ul.tabs li").click(function() {
var tab = $(this).attr("id");
var tabState = $(this).is(".selected");
var showThis = ".selector-" + tab;
if (tabState == true) {
$(NeedToConvertshowThisIntoObject).fadeIn(100);
}
else {
alert(Something);
}
});
謝謝!我想使用一個文本字符串作爲我的JQuery選擇器,我該怎麼做?
您是否嘗試過直接使用var showThis? – ChristopheCVB
對不起,但認真:[rtfm](http://api.jquery.com/jQuery/)。 –