为了好玩,我用 javascript 做了一些便签。
当屏幕上有多个便笺时,我希望将选中的那个放在前面。IE。将 z-index 提高到高于其他便笺。目前我正在使用 :hover 使用 CSS 执行此操作,这有点烦人。我想用 javascript/jquery 来做。我试图用 focus() 和 blur() 来做 addClass/removeClass
这是我到目前为止所拥有的
$('.darkYellow').click(function() {
$(this).focus(function() {
$(this).addClass("index");
});
});
$('.darkYellow').blur(function() {
$(this).removeClass("index");
});
感谢 Christoph http://jsfiddle.net/EnigmaMaster/aQMhk/6/更新和工作