3

我必须为我的客户提供奖励功能。如果有任何客户分享,请点击网站链接,然后我必须存储他们的详细信息。问题是我们如何才能让用户分享某些东西。任何帮助将不胜感激。我正在使用以下代码。

twitter.com/share?text=Your+Email+Marketing&url=http://blog.abc.com/your-email-marketing.html
4

1 回答 1

2

我找到了使用jquery.twitterbutton.js的解决方案

代码 :-

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>

<script src="http://code.jquery.com/jquery-latest.pack.js" type="text/javascript"></script>
<script src="http://platform.twitter.com/widgets.js"></script>
<script src="jquery.twitterbutton.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
  $('#twitterbutton-example').twitterbutton({
   user:'YourUsername',
   title:'jQuery-Twitter-Button Plugin with callback functions',
   onfollow:function(response){
    $('.twitterbutton-uncontent:visible').hide('fade');
    $('.twitterbutton-content').show('fade');
    $.cookie('tw','followed');
   },
   ontweet:function(response){
     alert("hello");
   },
   onretweet:function(response){

   },
   lang:'en'
  });

});
</script>



</head>

<body>
<div id="twitterbutton-example"></div>
</body>
</html>
于 2013-05-08T11:46:26.227 回答