显示使用xslt?

发布于 2024-10-03 08:00:07 字数 242 浏览 2 评论 0原文

我正在尝试在我的 xslt 渲染的网站中显示 Facebook 登录按钮。

我正在放入

<fb:loginbutton></fb:login-button> 

xslt,但我的页面只呈现

<login-button></login-button> 

为什么,我能做什么?

I'm trying to display an facebook login-button in my xslt-rendered site.

I'm putting

<fb:loginbutton></fb:login-button> 

in the xslt but my page just renders

<login-button></login-button> 

Why, and what can I do about it?

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

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

发布评论

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

评论(1

叶落知秋 2024-10-10 08:00:07

我认为登录按钮而不是登录按钮是一个拼写错误?你有完整的例子吗?

当我有这个 xml:

<test>hi</test>

和这个 xslt:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
                xmlns:fb="http://www.facebook.com/2008/fbml" version="1.0">
   <xsl:output method="html" indent="yes"/>

   <xsl:template match="test">
      <html>
         <body>
            <fb:login-button>
            test
            </fb:login-button>
         </body>
      </html>
   </xsl:template>
</xsl:stylesheet>

时,我将得到以下结果:

<html xmlns:fb="http://www.facebook.com/2008/fbml">
  <body>
    <fb:login-button>
      test
    </fb:login-button>
  </body>
</html>

I asume loginbutton instead of login-button is a typo? Do you have a complete example?

When I have this xml:

<test>hi</test>

And this xslt:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
                xmlns:fb="http://www.facebook.com/2008/fbml" version="1.0">
   <xsl:output method="html" indent="yes"/>

   <xsl:template match="test">
      <html>
         <body>
            <fb:login-button>
            test
            </fb:login-button>
         </body>
      </html>
   </xsl:template>
</xsl:stylesheet>

I will get the following result:

<html xmlns:fb="http://www.facebook.com/2008/fbml">
  <body>
    <fb:login-button>
      test
    </fb:login-button>
  </body>
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文