我有一个包含多个行/按钮的垂直任务栏(每个类.slidebar和不同的ID #start,#sprache,#modus等)。当我将鼠标悬停在每一行/按钮上时,应显示不同的弹出菜单(例如#start_fly用于按钮#start)。不幸的是它没有。我想这是因为我正在尝试将函数应用于字符串变量,如下所示:
flyout_id = "$('#"+id_name+"')"; //$('#start_fly')
flyout_id.css({//some code
});
这是完整的代码:
$(document).ready(function () {
$('.slidebar').each(function () {
var startOffset = $(this).position();
var ID = $(this).attr('id');
var id_name, flyout_id;
switch (ID) {
case 'start':
id_name = "start_fly";
break;
case 'sprache':
id_name = "sprache";
break;
case 'modus':
id_name = "modus_fly";
break;
case 'teilen':
id_name = "teilen_fly";
break;
case 'info':
id_name = "info_fly";
break;
}
flyout_id = "$('#" + id_name + "')"; //$('#start_fly') in 1. case 'start'
$(this).bind({
mouseenter: function () {
flyout_id.css({
position: 'fixed',
top: startOffset.top + 8,
left: $(this).offset().left - flyout_id.width()
});
flyout_id.show();
},
mouseleave: function () {
flyout_id.hide();
}
});
flyout_id.bind({
mouseleave: function () {
$(this).hide();
},
mouseenter: function () {
$(this).show();
}
});
});
});
答案 0 :(得分:2)
这是一个字符串:
flyout_id = "$('#"+id_name+"')";
你可能想要做的是创建一个jQuery对象:
flyout_id = $("#"+id_name);
另请注意,由于您的所有switch语句都将“_fly”添加到ID
的末尾(sprache
除外),您可以将其替换为:
id_name = ID;
if (ID !== "sprache") {
id_name = ID + "_fly";
}