例: http://jsfiddle.net/eduardojribeiro/fScua/297/
<a class='btn btn-danger button' rel="popover">Click Here</a>
$('body').popover({
selector: '[rel=popover]',
trigger: "hover",
container: "body",
title: "Lorem ipsum dolor",
content: "Phasellus lobortis, tortor iaculis viverra bibendum, est nunc lobortis justo"
});
$('.button').click(function(){ $(this).remove() });