我在MVC應用程序中使用Boostrap。如何在運行時在popover的數據內容標籤中添加數據?
我想添加數據以顯示popover運行時間。 但它不工作...
我有這樣的代碼......
<html>
<body>
<a href="#" id="example" class="btn btn-danger" rel="popover" data-content="" data-original-title="Twitter Bootstrap Popover">hover for popover</a>
</body>
</html>
<script>
$(function() {
$("#example").popover("Adding data run time here...");
});
</script>