2011-11-01 59 views
0

我有一個頁面,它利用了jTweetsAnywhere代碼(從​​)需要後jTweetsAnywhere後重定向到成功頁面

我希望能夠利用重定向的一次頁面回來後成功發佈Tweet。有沒有人做過類似的事情,並關心分享代碼?

這是我目前的代碼。我會在這裏添加一個函數嗎?

<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

它有一個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> 
相關問題