关于这个话题已经有很多线索根本不适用于我。 也许我错过了一些非常明显的东西。这是我的代码
我的包含(我使用CakePHP)
echo $this->Html->script('http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js');
echo $this->Html->script('bootstrap.min');
echo $this->Html->css('bootstrap.min');
我的JavaScript:
<script type="text/javascript">
$(document).ready(function() {
$("[rel='popover']").popover({
placement : 'top', // top, bottom, left or right
title : 'This is my Title',
html: 'true',
content : '<div id="popOverBox">Your Text Here</div>'
});
});
</script>
我的HTML:
<a title="" rel='popover'>Default Popover</a>