popover
動的にデータを入力しようとしています
ジャバスクリプト
$("[data-bind='popover']").popover({
trigger: 'hover',
html: true,
content: function(){
return "<img src="+$(this).data('content')+" />";
};
});
HTML
<a href="myreference.html" data-bind="popover" data-content="mylinktoimage">Brick</a>
問題は、内部を設定width
してheight
内部にimg
tag
入れるjs
と、がpopover
表示されることです。それらを設定しないと、まずアンカー<a>
がpointer cursor
「振動」し、popover
表示されません。
これはどのような問題になる可能性がありますか?