仅在需要时显示 Janrain/RPX 弹出窗口
用户无需登录即可访问我的网页,但某些操作需要身份验证。
我想仅在用户单击登录
按钮时显示 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用什么语言?只需在需要时添加 script 标签即可:
但您仍然需要一个元素。
What's the language you are using? Just add the script tag when needed:
But you still need a element.