0
我使用ASP.NET MVC與引導,jQuery的,實體框架......改變酥料餅的數據內容動態地使用jQuery/JavaScript的
我已經申請上按鈕的酥料餅的效果,顯示了我的尊重數據由於盤旋而出現局部視角。
我面臨的問題是我必須點擊兩次以獲取更新的文本或彈出式結果。
爲什麼我只是不知道請看看我在這裏提供的樣品,並幫助我。請知道的人。
HTML:
<button class="btn btn-success" type="button" data-toggle="popover"
data-trigger="focus" data-placement="top" title="Contact Detail"
id="btnContactInfo" data-html="true">
<i class="fa fa-info"></i></button>
的Javascript:
var popover = $('#btnContactInfo').popover({
trigger: 'manual'
}).popover('show');
$('#btnContactInfo')
.popover().on('show.bs.popover', function (e) {
$("#po").html(htmldata);
popover.attr('data-content', $("#po").html());
});