1
我試圖編寫函數,當你點擊一個按鈕時,textarea正在我的彈出窗口內容的底部添加。 問題是,當textarea顯示時,彈出窗口向下延伸並隱藏文本。 我希望popover只能伸展(保存底部位置和原始寬度) 有幫助嗎?添加內容時bootstrap popover錯位
這裏是我的代碼:
HTML:
<div class="popover-markup">
<a href="#" class="trigger">
This link triggers the popover.
</a>
<span class="content hide">
<p>This is the popover content.
</p>
<button id="clickme" onclick="showText()">click me</button>
<textarea class="textarea"></textarea>
</span>
</div>
JS:
$(document).ready(function() {
$('.popover-markup > .trigger').popover({
html: true,
title: function() {
return $(this).parent().find('.head').html();
},
content: function() {
return $(this).parent().find('.content').html();
},
container: 'body',
placement: 'top',
html: true
});
$('.textarea').hide();
});
function showText() {
$('.textarea').show();
};