1
$(document).ready(function(){
// Hide all large images except the first one
$('#imageContainer img').hide().filter(':first').show();
// Select all thumb links
$('#thumbContainer a').hover(function(event) {
// Hide all large images except for the one with the same hash as our thumb link
$('#imageContainer img').hide().filter(this.hash).show();
},
function() {} // Because the hover method has a mouseout state we need to define too
);
});
此.js腳本適用於鼠標懸停在錨標籤上。不過,我希望這個函數能夠在整個div上工作。用於懸停Div的jQuery圖像交換
如何更改此部分:.filter(this.hash).show();
這樣:。.filter(這(ID或唯一名稱).show();
謝謝
照顧
我想你可能意味着要放一個'#'而不是''。 – KyleFarris 2009-04-21 15:06:53