2011-12-19 6 views
0

私はページ位置を取得する動的なfbのようなボタンを作ろうとしていますが、htmlのdata-href要素を置き換えるベストプラクティスを探しています:top.location.hrefでfacebookのようなレンダリング

私はパズルの2枚持っている: JSメソッドはtop.location.hrefがREPLACできるようになる

top.location.href

  1. <div class="fb-like" data-href='' data-send="true" data-colorscheme="dark" data-width="450" data-show-faces="true"></div>
  2. をe data-href要素、そしてfacebookをボタンのようにレンダリングしますか?

答えて

1

いつも好きですか?

document.getElementById("the_like_button").setAttribute("data-href", new_value); 

か:

$("#the_like_button").attr("data-href", new_value); 

あなたはjQueryのを好む場合。

関連する問題