仅在需要时显示 Janrain/RPX 弹出窗口

发布于 2024-10-15 22:24:01 字数 461 浏览 3 评论 0原文

用户无需登录即可访问我的网页,但某些操作需要身份验证。

我想仅在用户单击登录按钮时显示 Janrain 弹出窗口。我的网页通常是用 JavaScript 动态生成的。

据我所知,显示弹出窗口的唯一方法是使用 class="rpxnow" 在页面中包含一个 a 元素,将链接添加到 rpxnow.com/js/lib/rpx.js 脚本,该脚本将向我的 a 元素添加一个 onclick 处理程序。

但是当页面加载时我没有任何 a 元素,并且我不喜欢通过不必要的

所以我的问题是:如何将 Janrain 弹出事件触发器附加到动态创建的 HTML 元素?

My webpage is accessible for users without sign in, but some action requires an authentication.

I would like to show the Janrain popup window only when the user clicked on the Sign in button. My webpages usually generated dynamically with Javascript.

As far as I know, the only way to show the popup is to include an a element to the page with class="rpxnow", add the link to the rpxnow.com/js/lib/rpx.js script, and this script will add an onclick handler to my a element.

But I didn't have any a element when the page was loaded, and I don't like to waste the anonymous user's bandwidth with the unnecessary <script> tags on every page.

So my question is: how to attach the Janrain popup event trigger to a dynamically created HTML element?

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

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

发布评论

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

评论(1

美人骨 2024-10-22 22:24:01

您使用什么语言?只需在需要时添加 script 标签即可:

if ($require_authentication)
{
   echo "<script src='http://static.rpxnow.com/js/lib/rpx.js' ...";
}

if ($require_authentication)
{
   echo "<a class='rpxnow'>";
}

但您仍然需要一个元素。

What's the language you are using? Just add the script tag when needed:

if ($require_authentication)
{
   echo "<script src='http://static.rpxnow.com/js/lib/rpx.js' ...";
}

if ($require_authentication)
{
   echo "<a class='rpxnow'>";
}

But you still need a element.

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