例:http ://www.nowness.com/ >[Twitter]をクリックします
私はTwitterAPIについて質問しているのではなく、開きたい一般的なウィンドウだけを質問しています。jQueryを使用できます。
編集:ここではモーダルは間違った用語でした。モーダルではなく、ポップアップが必要でした。
例:http ://www.nowness.com/ >[Twitter]をクリックします
私はTwitterAPIについて質問しているのではなく、開きたい一般的なウィンドウだけを質問しています。jQueryを使用できます。
編集:ここではモーダルは間違った用語でした。モーダルではなく、ポップアップが必要でした。
jQueryUIを使用できます。チュートリアルとデモは次のとおりです:http://jqueryui.com/demos/dialog/
リンクを追加するだけです
<a class="tweetme"
href="https://twitter.com/intent/tweet?text=yourtext&url=yoururl">
Tweet Me
</a>
とjavascript
<script type="text/javascript">
$('.tweetme').click(function (event) {
var width = 575,
height = 400,
left = ($(window).width() - width) / 2,
top = ($(window).height() - height) / 2,
url = this.href,
opts = 'status=1' +
',width=' + width +
',height=' + height +
',top=' + top +
',left=' + left;
window.open(url, 'twitte', opts);
return false;
});
</script>