2012-04-04 66 views

回答

0

你可以提供一個功能,而不是內容的參數字符串,然後用$(this)得到酥料餅的元素的jQuery對象。

實施例:

$("[rel=popover]").popover({ 
     delay: { show: 5, hide: 20000 }, 
     content: function() { 
      return "Popover Id: " + $(this).attr("id"); 
     } 
    }); 
相關問題