需要在jTweetsAnywhere帖子后重定向到成功页面

时间:2011-11-01 16:12:54

标签: jquery

我有一个使用jTweetsAnywhere代码的页面(来自here

我希望能够在成功发布推文后页面返回时使用重定向。有没有人做过这样的事情并且关心分享代码?

这是我目前的代码。我会在这里添加一个函数吗?

<div id="tweetbox"></div>
<script type="text/javascript">
   $('#tweetbox').jTweetsAnywhere({
      showTweetBox: {
         counter: false,
         width: 500,
         height: 60,
         label: '',
         defaultContent: '#MyTest http://stackoverflow.com'
      }
   });
</script>

1 个答案:

答案 0 :(得分:1)

它有一个OnSubmitted函数:

<script type="text/javascript">
   $('#tweetbox').jTweetsAnywhere({
      showTweetBox: {
         counter: false,
         width: 500,
         height: 60,
         label: '',
         defaultContent: '#MyTest http://stackoverflow.com',
         onTweet: function(textTweet, htmlTweet){
            //tweet send succes
            window.location.href = "newurl.html"
         }
      }
   });
</script>