0

我在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> 

回答

0

使用.attr() function

$("#example").attr("data-content", "Adding data run time here..."); 
0

我找到了答案......

<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").attr("data-content", getData()).popover(); 
    }); 

    function getData() 
    { 
     return "Here is the runtime data"; 
    } 

</script> 
0

懸停彈出。

$( 「#示例」)酥料餅({ 位置: '頂', 內容: '添加數據在這裏', });
相關問題