2

私は、クリックするとtwitterのブートストラップポップオーバーがポップアップし、その中に共有リンクがある共有ボタンを含むページに取り組んでいます。

var content = '<a href="http://www.facebook.com/share.php?u='+link+'">Post to facebook</a><br>';
  content += '<a href="http://twitter.com/home?status='+link+'">Post to twitter</a><br>';
  $('.sharelist').popover({
      'title': 'Share this Playlist', 
      'placement': 'bottom', 
      'html': true, 
      'content': content
  });

そして、それはほとんどそれを行います。ポップアップが表示され、リンクが青く表示され、その上にカーソルを合わせるとカーソルが小さな手の形に変わりますが、クリックしても何も起こりません! 右クリックして新しいタブで開くと、リンクが再び機能します。

なぜこうなった?

4

1 に答える 1

0

アップデート:

「post-popover」という名前のリンクにクラスを追加し、
$(document).ready(function() {
  $('.post-popover').popover({
    placement: 'bottom',
    title: 'Share this Playlist',
    content: 'content',
    html: true, 
    trigger: 'click'
  });

});

于 2013-02-14T00:06:49.010 に答える