嗨,我正在尝试通过将 Facebook Like Box 放置在 div 中来使其可拖动。Like Box 显示良好,但不拖动。我在它之前有一个 twitter 小部件,它工作得很好。
<div class="twitter"><script>new TWTR.Widget({version: 2, type: 'profile', rpp: 10, interval: 30000, width: 300, height: 300, theme: {shell: {background: '#7a7a7a', color: '#000000'}, tweets: {background: '#ffffff', color: '#000000', links: '#3586b8'}},features: {scrollbar: true, loop: false, live: true, behavior: 'all'}}).render().setUser('twitter').start();</script></div>
<div class="fb"><div class="fb-like-box" data-href="http://www.facebook.com/platform" data-width="292" data-show-faces="true" data-stream="true" data-header="false"></div></div>
$(function(){ $('.twitter').draggable({grid: [ 80, 80 ]}); $('.fb').draggable(); });
谢谢参观。