当两个 html 元素相互重叠并且后面的元素包含一个锚标记时,WP7 和 8 上的 IE “单击”顶部元素并单击锚。
包括 IE 在内的桌面浏览器和其他移动设备(如 Android 浏览器和 Mobile Safari)没有此行为。
html
<div class="back">
<a href="mypage.html">Min sida</a><br />
<a href="mypage.html">Min sida</a><br />
<a href="mypage.html">Min sida</a><br />
<a href="mypage.html">Min sida</a><br />
<a href="mypage.html">Min sida</a><br />
</div>
<div class="front">
</div>
css
.back
{
position: absolute;
top:0;
left: 0;
bottom: 0;
right: 0;
z-index: 1;
}
.front{
position: absolute;
top:0;
left: 0;
bottom: 0;
right: 0;
z-index: 2;
background-color: rgba(255, 0, 0, 0.5);
}
以下 jsfiddle 显示问题:http: //jsfiddle.net/BSunW/6/
这是预期的行为吗?有没有办法改变这种行为?