$(function() {
$(".btn").on("mouseover",function(){
$(this).attr("src", $(this).attr("src").replace("images", "images/hover"));
});
$(".btn").on("mouseleave",function(){
$(this).attr("src", $(this).attr("src").replace("images/hover", "images"));
});
});
上面的代碼偶爾打破是我改變形象時,按鈕上的用戶懸停,就可以當用戶點擊,它會重定向到其他頁面的方式。而html元素是這樣的:爲什麼圖像與懸停
<a href="product.php"><img class="btn" src="images/index_03.gif" /></a>
的問題是,我可以肯定的路徑是正確的,但是當用戶點擊該按鈕,在加載下一個頁面或在某些情況下的時候,當我懸停在圖像上,懸停的圖像沒有顯示,但斷開的鏈接,爲什麼它是如何修復它?感謝您的幫助
感謝您的幫助,它清楚了概念 – user782104