我在这里找到了以下脚本。随着我点击z-index的增加。但现在我希望最后一个元素恢复到原始状态。不知何故?
$(function () {
/*$("div.box").click(function() {
console.log("start");
})*/
// Change this selector to find whatever your 'boxes' are
var boxes = $("div.box");
// Set up click handlers for each box
boxes.click(function () {
var el = $(this), // The box that was clicked
max = 0;
// Find the highest z-index
boxes.each(function () {
// Find the current z-index value
var z = parseInt($(this).css("z-index"), 10);
// Keep either the current max, or the current z-index, whichever is higher
max = Math.max(max, z);
});
// Set the box that was clicked to the highest z-index plus one
el.css("z-index", max + 1);
/* hide and show the content*/
});
});