0
http://jsfiddle.net/Y5MRL/ 我使用jquery在用戶點擊透明div時彈出一個圖像。圖像應該是超鏈接到一個url。但圖像彈出後沒有超鏈接。問題是什麼?Jquery代碼禁用圖像上的超鏈接?
HTML
<a href="https://www.google.com/"><img id="enterout4" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSRDwuNVz5koLf3uGVSWt_otiZsKwCVAQK8gb0ppY3GFULHEU0C2w"></a>
jQuery的
$('#enter4').mouseenter(function(){
$('#enterout4').fadeIn('slow');
$('#enterout4').width($(window).width()/4.6);
console.log();
});
$('#enter4').mouseleave(function(){
$('#enterout4').fadeOut('slow');
});
CSS:
#enter4{
position: absolute;
z-index: 9999;
width: 300px;
height: 100px;
top: 0%;
left: 0%;
opacity: 0;
}
#enterout4{
position: absolute;
top: 0%;
left: 0%;
z-index: 9998;
display: none;
height:auto;
}
這裏是例子 http://jsfiddle.net/Y5MRL/
哪裏是'#enter4',以及爲什麼使用'jQuery的1.9.1','遷移1.1.0' 'jQuery UI的1.9.2','jQuery Mobile的1.3.0b1'和'jQuery Mobile的1.2。 0'在同一時間? :) – davidkonrad