使用 JavaScript 在弹出窗口中打开 ChatApplication

发布于 09-06 12:49 字数 143 浏览 8 评论 0原文

我正在这个项目网站上工作,其中我将添加一个聊天应用程序,用户可以在其中相互通信。我已经开发了一个聊天室网页,现在运行良好。但是,我想要的是在我的网站上创建一个“聊天室”链接,单击后将弹出聊天室作为弹出窗口。

有人可以帮助我如何做到这一点吗?谢谢大家。 :)

I'm working on this project website wherein i will be adding a chat application where users can communicate with each other. I already have developed a chat room webpage which is now functioning well. However, what I want is to create a "Chat Room" link on my website which will just pop out the chat room as a pop-up window upon click.

Can somebody please help me on how to do this? Thanks everyone. :)

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

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

发布评论

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

评论(1

只怪假的太真实2024-09-13 12:49:13

如果您链接到的聊天室有 target = "_blank",它将在新窗口中打开:

<a href="chatroom">opens inline</a>

<a href="chatroom" target="_blank">opens in a new window</a>

这只是正常的 HTML/浏览器行为。

If you link to the chat room has target = "_blank", it will open in a new window:

<a href="chatroom">opens inline</a>

<a href="chatroom" target="_blank">opens in a new window</a>

This is just normal HTML / browser behavior.

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