我爲我創建的網站創建一個燈箱,不,我不想使用一個已經制作好的燈箱,我想讓自己做。jquery:抓住div標題attr,把它放到圖像src
當用戶點擊網站上的某個地方,我有jQuery的搶那是title屬性,然後貼到圖像的src,然後注入該圖像標記爲.overlay_content
一切正常,除了它不會搶的稱號,該變量不工作,我不知道我做錯了什麼,它是將抓住-IMG進入SRC的形象,span.overlay_img
$(document).ready(function() {
$('.overlay_img').click(function(){
var docHeight = $(document).height();
var grabbed_img = $(this).attr('title');
$(".overlay_bg").height(docHeight).fadeIn(300, function(){
$(".overlay_content").html("<img src='grabbed_img'>").fadeIn(300);
});
});
});
啊,你們都知道了,很好,我不知道我必須把那些額外的引號放在那裏。 – ExodusNicholas 2010-02-18 23:40:48