在 JSF 上重新渲染推文按钮

发布于 2024-10-28 08:06:17 字数 651 浏览 2 评论 0原文

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

<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>

之前 使用的是 JSF 1.2 在此处输入图像描述

之后 在此处输入图像描述

I'm following Twitter website to create a Tweet Button on my own website.
The problem is, when I reRender the page, it reRenders the button too, and I don't know
why, but the button just disappears.

I'm using 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>

Before
enter image description here

after
enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

走过海棠暮 2024-11-04 08:06:17

我已经切换到 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;" />

通过这样做,重新渲染不会影响按钮。

I've switched to 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;" />

By doing this, reRender will not affect the button.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文