有沒有更高效的方式來做到這一點,我的意思是除了使用全局?我討厭使用全局變量,但我似乎無法弄清楚如何將href屬性傳遞給函數。從我的點擊事件傳遞一個變量到函數
$(document).ready(function(){
var src
$('.thumbs li a').click(function(){
src=$(this).attr('href')
loadImage();
return false;
})
function loadImage(){
var img = new Image();
$(img).load(function() {
//$(this).css('display', 'none'); // .hide() doesn't work in Safari when the element isn't on the DOM already
$(this).hide();
$('.large_img_holder').removeClass('loading').append(this);
$(this).fadeIn();
}).error(function() {
// notify the user that the image could not be loaded
}).attr('src', src);
}
});
好了,不要我現在覺得可笑,我可以發誓,我試過了。感謝您的幫助,我很感激。 – jamesvec 2010-11-07 23:27:28