亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

CSS實現(xiàn)超級鏈接需要通過雙擊后跳轉(zhuǎn)

  發(fā)布時間:2013-10-12 17:45:06   作者:佚名   我要評論
超級鏈接需要雙擊后跳轉(zhuǎn)如何實現(xiàn),其實很簡單,在本文將為大家介紹下具體的實現(xiàn)方法,感興趣的朋友不要錯過
CSS代碼

復(fù)制代碼
代碼如下:

.test3 span {
position: relative;
}
.test3 span a {
position: relative;
z-index: 2;
}
.test3 span a:hover, .test3 span a:active {
z-index: 4;
}
.test3 span input {
background: transparent;
border: 0;
cursor: pointer;
position: absolute;
top: -1px;
left: 0;
width: 101%; /* Hacky */
height: 301%; /* Hacky */
z-index: 3;
}
.test3 span input:focus {
background: transparent;
border: 0;
z-index: 1;
}

html代碼

復(fù)制代碼
代碼如下:

<div class="test3">
<span><input type="text" value="&nbsp;" readonly="true" />
<a >Double click me</a></span>
</div>

相關(guān)文章

最新評論