我試圖改變圖像的透明度我按一下紅色按鈕 之後,而不是添加不同的圖像,我不應該看到的新形象jQuery的不透明度不工作
我的JS代碼上的紅色按鈕在下面。
<script>
$(document).ready(function() {
$(".specialHoverOne").hover(function() {
// alert("i am here");
$(".ctaSpecialOne").css("visibility", "visible");
},
function() {
$(".ctaSpecialOne").css("visibility", "hidden");
});
$(".ctaSpecialOne").click(function (e) {
alert("clicked");
e.preventDefault();
//$(this).closest('.specialHoverOne').unbind("mouseenter").end().parent().siblings('a').children("img").attr("src", //"http://imgs.zinio.com/magimages/62898189/2012/416242497_200.jpg");
$(this).css({
'opacity': 50
});
});
});
</script>
+1。所有更多理由清理代碼並傳入需要不透明度的ID。 – ethorn10
@douglas:謝謝你的回覆我正試圖挽救這種不透明https://docs.google.com/open?id=0B5pgxrT9wSU7bUx0Ql9sOVFzb0E – user1828505
@douglas:我們可以讓紅色按鈕完全隱藏,一旦圖像被添加...自從鼠標懸停後,我再次看到紅色按鈕 – user1828505