我正在关注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>
在
后
答案 0 :(得分:0)
我已切换到iframe
<iframe frameborder="0" scrolling="no" src="http://platform.twitter.com/widgets/tweet_button.html?counturl=http://www.mywebsite.com&count=vertical&via=mytwitter&text=My%20Text&url=http://www.mywebsite.com&"
style="width:55px; height:65px; overflow:hidden; position:relative;" />
通过这样做,reRender不会影响按钮。