<script>
function woyingjie(o){
var a=document.getElementById("a").style.zIndex;
var b=document.getElementById("b").style.zIndex;
if(a<b){
max=b;
}
else{
max=a;
}
o.style.zIndex=max+1;
}
</script>
<div id=a style="position:absolute;top:0px;left:0px;width:100px;height:100px;background:black;z-index:1;" onclick=woyingjie(this)></div>
<div id=b style="position:absolute;top:0px;left:50px;width:100px;height:100px;background:red;z-index:1;" onclick=woyingjie(this)></div>