10 のうちの値を返す jquery クイズがあります。
私がやりたいのは、ユーザーがクイズを受けた後に「facebook に共有」ボタンと「スコアをツイートする」ボタンです。
これはリンクに使用するコードです:
<a class="facebook" href="http://www.facebook.com/dialog/feed?app_id=xxxxxxxxxxxxxxxxx&redirect_uri=<?=urlencode("https://www.facebook.com/=app_xxxxxxxxxxxxxxxxx");?>&display=page&link=<?=urlencode("https://www.facebook.com/=app_xxxxxxxxxxxxxxxxx");?>&picture=<?=urlencode("");?>&caption=&description=<?=urlencode("I just took the Quiz and scored xx/10. Want to take the quiz? Click here.");?>&name=<?=urlencode("");?>" title="Share on Facebook" target="_blank">Share on Facebook</a>
<a href="http://twitter.com?status=<?=urlencode("I just took the Quiz and scored xx/10. Want to take the quiz? Click here.");?>" title="Tweet" target="_blank" class="twitter">Share on Twitter</a>
したがって、説明の xx/10 に、jQuery 変数に格納されているユーザー スコアを表示したいと思います。
本当にありがとう!