私は Twitter Bootstrap を使用していますが、iPad と iPhone でテストするときに修正できない問題に遭遇しました。モバイル (少なくともこれらのデバイス) では、クリックしてヒントまたはポップオーバーを有効にする必要があります (予想どおり)。問題は、一度閉じると決して閉じられないことです。もう一度クリックすると閉じるリスナーを追加しましたが、デフォルトの動作ではクリックして削除しないとは信じがたいです。これは Bootstrap のポップオーバーとツールチップのバグですか?? 私のコードは以下のとおりです - 動作しているように見えますが、ヒントまたはポップオーバーを作成したのと同じアイテムをクリックした場合にのみ - ページのどこにもありません (それを動作させることができませんでした)。
実行するコード:
$(function () {
//Remove the title bar (adjust the template)
$(".Example").popover({
offset: 10,
animate: false,
html: true,
placement: 'top',
template: '<div class="popover"><div class="arrow"></div><div class="popover-inner"><div class="popover-content"><p></p></div></div></div>'
//<h3 class="popover-title"></h3>
//Need to have this click check since the tooltip will not close on mobile
}).click(function(e) {
jQuery(document).one("click", function() {
$('.Example').popover('hide')
});
});
});
HTML:
<a href="javascript:void(0);" class="Example" rel="popover" data-content="This is the Data Content" data-original-title="This is the title (hidden in this example)">
前もって感謝します!
デニス