2011-03-09 55 views
2

我使用:jQuery的彈出提示

jQuery Bubble Popup v.2.3.1 
http://maxvergelli.wordpress.com/jquery-bubble-popup/ 

你是爲了有這個文件準備:

$('.bubble').CreateBubblePopup({ 
     align: 'center', 
     innerHtml: 'TEXT GOETH HERE!',   // THIS IS THE LINE 
     innerHtmlStyle: { 
      color: '#FFFFFF', 
      'text-align': 'center' 
     }, 
     themeName: 'all-black', 
     themePath: 'plugins/bubble/themes' 
    }); 

你必須明確地設置鼠標的文本結束了...是否有可能將文本設置爲元素的屬性?或者甚至更好,元素上的自定義屬性?喜歡的東西:

innerHtml: this.attr("alt"), 

但是,這並不因爲 '這個' 沒有定義

回答

3

在文件準備工作功能:

$('.bubble').each(function(){ 
    $(this).CreateBubblePopup({ 
     align: 'center', 
     innerHtml: $(this).attr('mouseoverText'), 
     innerHtmlStyle: { 
      color: '#FFFFFF', 
      'text-align': 'center' 
     }, 
     themeName: 'all-black', 
     themePath: 'plugins/bubble/themes' 
    }); 
}); 
+0

輝煌!謝謝! – 2011-03-09 22:12:48