我的問題是基於SO質疑Bootstrap tooltips not workingTwitter的引導提示跨度標籤(不是標籤)
因此,解決方案是使用: jQuery的:
$("[rel='tooltip']").tooltip();
HTML:
<a href="#" rel="tooltip" title="A nice tooltip">test</a>
而且工作完美。 我的問題是:如果我想使用<span>
標記而不是<a>
,該怎麼辦。
是否應該是<span rel="tooltip" title="A nice tooltip">Hover on me</span>
?
它很完美,但我看到rel
屬性用於標籤。
那麼,什麼是正確的解決方案?