JSF上的reRendering Tweet按钮

时间:2011-03-30 17:12:44

标签: java jsf twitter

我正在关注Twitter网站,在我自己的网站上创建一个推文按钮。 问题是,当我reRender页面时,它也会重新启动按钮,我不知道 为什么,但按钮就消失了。

我正在使用JSF 1.2

<a href="http://twitter.com/share" class="twitter-share-button" 
                    data-url="http://www.mywebsite.com" 
                    data-text="My Text"
                    data-count="vertical" 
                    data-via="MyTwitter">Tweet
                    <script type="text/javascript" src="http://platform.twitter.com/widgets.js"/></a>

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

我已切换到iframe

<iframe frameborder="0" scrolling="no" src="http://platform.twitter.com/widgets/tweet_button.html?counturl=http://www.mywebsite.com&amp;count=vertical&amp;via=mytwitter&amp;text=My%20Text&amp;url=http://www.mywebsite.com&amp;"
                        style="width:55px; height:65px; overflow:hidden; position:relative;" />

通过这样做,reRender不会影响按钮。